#[macro_use]
extern crate derive_more;
#[macro_use]
extern crate derivative;
pub mod error;
pub mod anchor;
mod codepoint; pub mod color; pub mod matrix;
pub mod component;
pub mod glif;
pub mod guideline;
#[cfg(feature = "glifimage")]
pub mod image;
pub mod outline;
pub mod pedantry;
pub mod point;
pub mod string;
pub use crate::anchor::Anchor;
pub use crate::codepoint::Codepoint;
pub use crate::color::Color;
pub use crate::component::{FlattenedGlif, GlifComponent, Component, ComponentRect};
pub use crate::glif::{read, read_pedantic, read_from_filename, read_from_filename_pedantic, write, write_to_filename};
pub use crate::glif::Glif;
pub use crate::glif::xml;
#[cfg(feature = "mfek")]
pub use crate::glif::mfek::MFEKGlif;
#[cfg(feature = "mfek")]
pub use crate::glif::mfek::contour_operations::vws::{VWSContour, JoinType, CapType};
#[cfg(feature = "mfek")]
pub use crate::glif::mfek::pointdata::MFEKPointData;
pub use crate::guideline::{Guideline, GuidelinePoint};
#[cfg(feature = "glifimage")]
pub use crate::image::{GlifImage, Image, ImageCodec};
pub use crate::outline::{contour, Contour, Outline};
pub use crate::pedantry::Pedantry;
pub use crate::point::{IsValid, PointLike};
pub use crate::point::{Point, PointType, Handle, WhichHandle, PointData};
pub use crate::string::GlifString;
pub use integer_or_float::IntegerOrFloat;