[go: up one dir, main page]

lyon_core 0.5.0

Common resources to all lyon crates.
Documentation
#![doc(html_logo_url = "https://nical.github.io/lyon-doc/lyon-logo.svg")]

extern crate euclid;

pub mod math;
pub mod math_utils;
pub mod path_state;
pub mod events;
pub mod fixed;

pub use path_state::*;
pub use events::*;

/// Flag parameters for arcs as described by the SVG specification.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct ArcFlags {
    pub large_arc: bool,
    pub sweep: bool,
}