we (web engine): Experimental web browser project to understand the limits of Claude
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 10 lines 290 B view raw
1//! SVG parsing and rasterization for the `we` browser engine. 2//! 3//! Handles inline SVG elements: `<svg>`, `<rect>`, `<circle>`, `<ellipse>`, 4//! `<line>`, `<path>`, `<text>`, and `<g>`. 5 6pub mod path; 7pub mod render; 8pub mod transform; 9 10pub use render::{render_svg, svg_intrinsic_size};