struct VelloPen<'a> {
path: &'a mut BezPath,
x_offset: f64,
}Fields§
§path: &'a mut BezPath§x_offset: f64Trait Implementations§
Source§impl OutlinePen for VelloPen<'_>
impl OutlinePen for VelloPen<'_>
Source§fn quad_to(&mut self, cx0: f32, cy0: f32, x: f32, y: f32)
fn quad_to(&mut self, cx0: f32, cy0: f32, x: f32, y: f32)
Emit a quadratic bezier segment from the current point with a control
point at (cx0, cy0) and ending at (x, y).
Auto Trait Implementations§
impl<'a> Freeze for VelloPen<'a>
impl<'a> RefUnwindSafe for VelloPen<'a>
impl<'a> Send for VelloPen<'a>
impl<'a> Sync for VelloPen<'a>
impl<'a> Unpin for VelloPen<'a>
impl<'a> !UnwindSafe for VelloPen<'a>
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