bymsdfgen-core 0.1.0

Pure-Rust msdf generator core: multi-channel signed distance field generation, a data-oriented reimplementation of msdfgen
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Data-oriented shape geometry: edge segments, contours, shapes.

pub mod contour;
pub mod convergent;
pub mod edge_color;
pub mod edge_segment;
pub mod equation_solver;
pub mod shape;

pub use contour::Contour;
pub use convergent::convergent_curve_ordering;
pub use edge_color::EdgeColor;
pub use edge_segment::EdgeSegment;
pub use shape::{Bounds, Shape};