Enum ab_glyph::OutlineCurve [−][src]
pub enum OutlineCurve {
Line(Point, Point),
Quad(Point, Point, Point),
Cubic(Point, Point, Point, Point),
}
Expand description
Glyph outline primitives.
Variants
Line(Point, Point)
Straight line from .0
to .1
.
Quad(Point, Point, Point)
Quadratic Bézier curve from .0
to .2
using .1
as the control.
Cubic(Point, Point, Point, Point)
Cubic Bézier curve from .0
to .3
using .1
as the control at the beginning of the
curve and .2
at the end of the curve.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for OutlineCurve
impl Send for OutlineCurve
impl Sync for OutlineCurve
impl Unpin for OutlineCurve
impl UnwindSafe for OutlineCurve
Blanket Implementations
Mutably borrows from an owned value. Read more