pub enum CurveSegment {
Move(Point),
Line(Point),
Quad(Point, Point),
Cubic(Point, Point, Point),
Close,
}
Expand description
A segment of a curve.
Variants§
Move(Point)
Move to a point.
Line(Point)
Line to a point.
Quad(Point, Point)
Quadratic bezier curve to a point.
Cubic(Point, Point, Point)
Cubic bezier curve to a point.
Close
Close the curve.
Trait Implementations§
Source§impl Clone for CurveSegment
impl Clone for CurveSegment
Source§fn clone(&self) -> CurveSegment
fn clone(&self) -> CurveSegment
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CurveSegment
impl Debug for CurveSegment
Source§impl PartialEq for CurveSegment
impl PartialEq for CurveSegment
impl Copy for CurveSegment
impl StructuralPartialEq for CurveSegment
Auto Trait Implementations§
impl Freeze for CurveSegment
impl RefUnwindSafe for CurveSegment
impl Send for CurveSegment
impl Sync for CurveSegment
impl Unpin for CurveSegment
impl UnwindSafe for CurveSegment
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more