pub(crate) struct OutlinePath(pub(crate) BezPath);Tuple Fields§
§0: BezPathImplementations§
Source§impl OutlinePath
impl OutlinePath
Trait Implementations§
Source§impl Clone for OutlinePath
impl Clone for OutlinePath
Source§fn clone(&self) -> OutlinePath
fn clone(&self) -> OutlinePath
Returns a duplicate 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 Default for OutlinePath
impl Default for OutlinePath
Source§fn default() -> OutlinePath
fn default() -> OutlinePath
Returns the “default value” for a type. Read more
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