Struct sixtyfps_corelib::graphics::PathCubicTo[][src]

#[repr(C)]
pub struct PathCubicTo { pub x: f32, pub y: f32, pub control_1_x: f32, pub control_1_y: f32, pub control_2_x: f32, pub control_2_y: f32, }

PathCubicTo describes a smooth Bézier curve from the path’s current position to the specified x/y location, using two control points.

Fields

x: f32

The x coordinate of the curve’s end point.

y: f32

The y coordinate of the curve’s end point.

control_1_x: f32

The x coordinate of the curve’s first control point.

control_1_y: f32

The y coordinate of the curve’s first control point.

control_2_x: f32

The x coordinate of the curve’s second control point.

control_2_y: f32

The y coordinate of the curve’s second control point.

Implementations

impl PathCubicTo[src]

pub const FIELD_OFFSETS: PathCubicToFieldsOffsets[src]

Return a struct containing the offset of for the fields of this struct

Trait Implementations

impl Clone for PathCubicTo[src]

impl Debug for PathCubicTo[src]

impl Default for PathCubicTo[src]

impl PartialEq<PathCubicTo> for PathCubicTo[src]

impl StructuralPartialEq for PathCubicTo[src]

impl<'__dummy_lifetime> Unpin for PathCubicTo where
    __MustNotImplUnpin<'__dummy_lifetime>: Unpin
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.