1 2 3 4 5 6 7 8 9 10 11 12
//! cotati is a general-purpose vector drawing interface that does not restrict binding to a back-end renderer. mod errors; pub use errors::*; mod primitives; pub use primitives::*; mod renderers; pub use renderers::*; mod draw; pub use draw::*; pub mod combinator;