pub struct Curve4Points {
pub cp: [f64; 8],
}Expand description
Eight control-point coordinates for a cubic Bezier curve.
Fields§
§cp: [f64; 8]Implementations§
Trait Implementations§
Source§impl Clone for Curve4Points
impl Clone for Curve4Points
Source§fn clone(&self) -> Curve4Points
fn clone(&self) -> Curve4Points
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 Curve4Points
impl Debug for Curve4Points
Source§impl Index<usize> for Curve4Points
impl Index<usize> for Curve4Points
Source§impl IndexMut<usize> for Curve4Points
impl IndexMut<usize> for Curve4Points
impl Copy for Curve4Points
Auto Trait Implementations§
impl Freeze for Curve4Points
impl RefUnwindSafe for Curve4Points
impl Send for Curve4Points
impl Sync for Curve4Points
impl Unpin for Curve4Points
impl UnwindSafe for Curve4Points
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