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
//! Per-edge distance selection and per-contour combination.

pub mod combiners;
pub mod finder;
pub mod selectors;
pub mod value;

pub use combiners::{ContourCombiner, OverlappingContourCombiner, SimpleContourCombiner};
pub use finder::ShapeDistanceFinder;
pub use selectors::{
    EdgeSelector, MultiAndTrueDistanceSelector, MultiDistanceSelector,
    PerpendicularDistanceSelector, TrueDistanceSelector,
};
pub use value::{DistanceValue, MultiAndTrueDistance, MultiDistance};