Struct i_slint_core::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: f32The x coordinate of the curve’s end point.
y: f32The y coordinate of the curve’s end point.
control_1_x: f32The x coordinate of the curve’s first control point.
control_1_y: f32The y coordinate of the curve’s first control point.
control_2_x: f32The x coordinate of the curve’s second control point.
control_2_y: f32The y coordinate of the curve’s second control point.
Implementations§
source§impl PathCubicTo
impl PathCubicTo
sourcepub const FIELD_OFFSETS: PathCubicToFieldsOffsets = _
pub const FIELD_OFFSETS: PathCubicToFieldsOffsets = _
Return a struct containing the offset of for the fields of this struct
Trait Implementations§
source§impl Clone for PathCubicTo
impl Clone for PathCubicTo
source§fn clone(&self) -> PathCubicTo
fn clone(&self) -> PathCubicTo
Returns a copy 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 PathCubicTo
impl Debug for PathCubicTo
source§impl Default for PathCubicTo
impl Default for PathCubicTo
source§fn default() -> PathCubicTo
fn default() -> PathCubicTo
Returns the “default value” for a type. Read more
source§impl From<PathCubicTo> for PathElement
impl From<PathCubicTo> for PathElement
source§fn from(original: PathCubicTo) -> PathElement
fn from(original: PathCubicTo) -> PathElement
Converts to this type from the input type.
source§impl PartialEq<PathCubicTo> for PathCubicTo
impl PartialEq<PathCubicTo> for PathCubicTo
source§fn eq(&self, other: &PathCubicTo) -> bool
fn eq(&self, other: &PathCubicTo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.