pub struct CubicControlPoint {
pub x1: f32,
pub y1: f32,
pub x2: f32,
pub y2: f32,
pub x: f32,
pub y: f32,
}Expand description
Represents a control point for a cubic Bézier curves.
Fields§
§x1: f32§y1: f32§x2: f32§y2: f32§x: f32§y: f32Trait Implementations§
Auto Trait Implementations§
impl Freeze for CubicControlPoint
impl RefUnwindSafe for CubicControlPoint
impl Send for CubicControlPoint
impl Sync for CubicControlPoint
impl Unpin for CubicControlPoint
impl UnwindSafe for CubicControlPoint
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