Enum lyon_path_iterator::Segment
[−]
[src]
pub enum Segment {
Line(Point, Point),
QuadraticBezier(Point, Point, Point),
CubicBezier(Point, Point, Point, Point),
}Convenience for algorithms which prefer to iterate over segments directly rather than path events.
Variants
Line(Point, Point)QuadraticBezier(Point, Point, Point)CubicBezier(Point, Point, Point, Point)Trait Implementations
impl Copy for Segment[src]
impl Clone for Segment[src]
fn clone(&self) -> Segment
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more