pub(crate) struct OutlinePath(pub(crate) BezPath);
Tuple Fields§
§0: BezPath
Implementations§
Source§impl OutlinePath
impl OutlinePath
Trait Implementations§
Source§impl OutlinePen for OutlinePath
impl OutlinePen for OutlinePath
Source§fn curve_to(&mut self, cx0: f32, cy0: f32, cx1: f32, cy1: f32, x: f32, y: f32)
fn curve_to(&mut self, cx0: f32, cy0: f32, cx1: f32, cy1: f32, x: f32, y: f32)
Emit a cubic bezier segment from the current point with control
points at (cx0, cy0) and (cx1, cy1) and ending at (x, y).
Auto Trait Implementations§
impl Freeze for OutlinePath
impl RefUnwindSafe for OutlinePath
impl Send for OutlinePath
impl Sync for OutlinePath
impl Unpin for OutlinePath
impl UnwindSafe for OutlinePath
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