Struct sixtyfps_corelib::graphics::PathCubicTo
source · [−]#[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,
}
Expand description
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
Return a struct containing the offset of for the fields of this struct
Trait Implementations
Returns the “default value” for a type. Read more
Performs the conversion.
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 PathCubicTo where
__MustNotImplUnpin<'__dummy_lifetime>: Unpin,
Auto Trait Implementations
impl RefUnwindSafe for PathCubicTo
impl Send for PathCubicTo
impl Sync for PathCubicTo
impl UnwindSafe for PathCubicTo
Blanket Implementations
Mutably borrows from an owned value. Read more