pub struct QuadraticBezierShape {
pub points: [Pos2; 3],
pub closed: bool,
pub fill: Color32,
pub stroke: PathStroke,
}
Expand description
A quadratic Bézier Curve.
See also CubicBezierShape
.
Fields§
§points: [Pos2; 3]
The first point is the starting point and the last one is the ending point of the curve. The middle point is the control points.
closed: bool
§fill: Color32
§stroke: PathStroke
Implementations§
source§impl QuadraticBezierShape
impl QuadraticBezierShape
sourcepub fn from_points_stroke(
points: [Pos2; 3],
closed: bool,
fill: Color32,
stroke: impl Into<PathStroke>,
) -> Self
pub fn from_points_stroke( points: [Pos2; 3], closed: bool, fill: Color32, stroke: impl Into<PathStroke>, ) -> Self
Create a new quadratic Bézier shape based on the 3 points and stroke.
The first point is the starting point and the last one is the ending point of the curve. The middle point is the control points. The points should be in the order [start, control, end]
sourcepub fn transform(&self, transform: &RectTransform) -> Self
pub fn transform(&self, transform: &RectTransform) -> Self
Transform the curve with the given transform.
sourcepub fn to_path_shape(&self, tolerance: Option<f32>) -> PathShape
pub fn to_path_shape(&self, tolerance: Option<f32>) -> PathShape
Convert the quadratic Bézier curve to one PathShape
.
The tolerance
will be used to control the max distance between the curve and the base line.
sourcepub fn visual_bounding_rect(&self) -> Rect
pub fn visual_bounding_rect(&self) -> Rect
The visual bounding rectangle (includes stroke width)
sourcepub fn logical_bounding_rect(&self) -> Rect
pub fn logical_bounding_rect(&self) -> Rect
Logical bounding rectangle (ignoring stroke width)
sourcepub fn sample(&self, t: f32) -> Pos2
pub fn sample(&self, t: f32) -> Pos2
Calculate the point (x,y) at t based on the quadratic Bézier curve equation. t is in [0.0,1.0] Bézier Curve
sourcepub fn flatten(&self, tolerance: Option<f32>) -> Vec<Pos2>
pub fn flatten(&self, tolerance: Option<f32>) -> Vec<Pos2>
find a set of points that approximate the quadratic Bézier curve. the number of points is determined by the tolerance. the points may not be evenly distributed in the range [0.0,1.0] (t value)
sourcepub fn for_each_flattened_with_t<F>(&self, tolerance: f32, callback: &mut F)
pub fn for_each_flattened_with_t<F>(&self, tolerance: f32, callback: &mut F)
Compute a flattened approximation of the curve, invoking a callback at each step.
The callback takes the point and corresponding curve parameter at each step.
This implements the algorithm described by Raph Levien at https://raphlinus.github.io/graphics/curves/2019/12/23/flatten-quadbez.html
Trait Implementations§
source§impl Clone for QuadraticBezierShape
impl Clone for QuadraticBezierShape
source§fn clone(&self) -> QuadraticBezierShape
fn clone(&self) -> QuadraticBezierShape
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for QuadraticBezierShape
impl Debug for QuadraticBezierShape
source§impl<'de> Deserialize<'de> for QuadraticBezierShape
impl<'de> Deserialize<'de> for QuadraticBezierShape
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl From<QuadraticBezierShape> for Shape
impl From<QuadraticBezierShape> for Shape
source§fn from(shape: QuadraticBezierShape) -> Self
fn from(shape: QuadraticBezierShape) -> Self
source§impl PartialEq for QuadraticBezierShape
impl PartialEq for QuadraticBezierShape
source§impl Serialize for QuadraticBezierShape
impl Serialize for QuadraticBezierShape
impl StructuralPartialEq for QuadraticBezierShape
Auto Trait Implementations§
impl Freeze for QuadraticBezierShape
impl !RefUnwindSafe for QuadraticBezierShape
impl Send for QuadraticBezierShape
impl Sync for QuadraticBezierShape
impl Unpin for QuadraticBezierShape
impl !UnwindSafe for QuadraticBezierShape
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more