pub trait ShapeLoadableTrait: 'static + Debug + Sync + Send {
    fn load_mf1(&self, group: &GroupData) -> Result<Outline, LibraryLoadError>;

    fn load(&self, size: PosC<f64>) -> Outline { ... }
}

Required Methods

Provided Methods

Success or failure must not depend on svg_sz

Called to check the group configuration before load, but with a dummy svg_gz of [1,1]. That must correctly predict success with other sizes.

Implementors