Struct sixtyfps_corelib::graphics::PathQuadraticTo  [−][src]
#[repr(C)]pub struct PathQuadraticTo {
    pub x: f32,
    pub y: f32,
    pub control_x: f32,
    pub control_y: f32,
}Expand description
PathCubicTo describes a smooth Bézier curve from the path’s current position to the specified x/y location, using one control points.
Fields
x: f32The x coordinate of the curve’s end point.
y: f32The y coordinate of the curve’s end point.
control_x: f32The x coordinate of the curve’s control point.
control_y: f32The y coordinate of the curve’s control point.
Implementations
Return a struct containing the offset of for the fields of this struct
Trait Implementations
Returns the “default value” for a type. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
impl<'__dummy_lifetime> Unpin for PathQuadraticTo where
    __MustNotImplUnpin<'__dummy_lifetime>: Unpin, 
Auto Trait Implementations
impl RefUnwindSafe for PathQuadraticTo
impl Send for PathQuadraticTo
impl Sync for PathQuadraticTo
impl UnwindSafe for PathQuadraticTo
Blanket Implementations
Mutably borrows from an owned value. Read more