#[repr(C)]pub struct CubicBezier {
pub c1: Point,
pub c2: Point,
pub c3: Point,
pub c4: Point,
}
Expand description
Cubic Bezier Curve, made of 4 control points
Fields§
§c1: Point
§c2: Point
§c3: Point
§c4: Point
Trait Implementations§
Source§impl Clone for CubicBezier
impl Clone for CubicBezier
Source§fn clone(&self) -> CubicBezier
fn clone(&self) -> CubicBezier
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 Debug for CubicBezier
impl Debug for CubicBezier
Source§impl Default for CubicBezier
impl Default for CubicBezier
Source§fn default() -> CubicBezier
fn default() -> CubicBezier
Returns the “default value” for a type. Read more
impl Copy for CubicBezier
Auto Trait Implementations§
impl Freeze for CubicBezier
impl RefUnwindSafe for CubicBezier
impl Send for CubicBezier
impl Sync for CubicBezier
impl Unpin for CubicBezier
impl UnwindSafe for CubicBezier
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