pub struct Curve { /* private fields */ }
Expand description
A bezier curve.
Implementations§
Source§impl Curve
impl Curve
Sourcepub fn get_hash(&self) -> u64
pub fn get_hash(&self) -> u64
Get the hash of the curve.
This is a non-cryptographic fast hash, and is cached.
Sourcepub fn last_point(&self) -> Option<Point>
pub fn last_point(&self) -> Option<Point>
Get the last point in the curve.
Sourcepub fn quad_to(&mut self, control: Point, point: Point)
pub fn quad_to(&mut self, control: Point, point: Point)
Draw a quadratic bezier curve to a point
, with a control point control
.
Sourcepub fn cubic_to(&mut self, a: Point, b: Point, point: Point)
pub fn cubic_to(&mut self, a: Point, b: Point, point: Point)
Draw a cubic bezier curve to a point
, with control points a
and b
.
Sourcepub fn conic_to(&mut self, control: Point, point: Point, weight: f32)
pub fn conic_to(&mut self, control: Point, point: Point, weight: f32)
Draw a conic curve to a point
, with a control point control
and a weight
.
Conic curves are approximated by quadratic bezier curves.
Sourcepub fn transform(&mut self, transform: Affine)
pub fn transform(&mut self, transform: Affine)
Transform the curve by the given affine transform.
Sourcepub fn contains(&self, point: Point, rule: FillRule) -> bool
pub fn contains(&self, point: Point, rule: FillRule) -> bool
Check if the curve contains a point
using the given rule
.
Sourcepub fn stroke_curve(&mut self, curve: &Curve, stroke: Stroke)
pub fn stroke_curve(&mut self, curve: &Curve, stroke: Stroke)
Stroke the curve
with the given stroke
.
Sourcepub fn push_rect_with_radius(&mut self, rect: Rect, radius: BorderRadius)
pub fn push_rect_with_radius(&mut self, rect: Rect, radius: BorderRadius)
Push a rectangle with rounded corners to the curve.
Sourcepub fn push_rect_with_borders(
&mut self,
rect: Rect,
radius: BorderRadius,
width: BorderWidth,
)
pub fn push_rect_with_borders( &mut self, rect: Rect, radius: BorderRadius, width: BorderWidth, )
Push the border of a rectangle with rounded corners to the curve.
Trait Implementations§
Source§impl<'a> IntoIterator for &'a Curve
impl<'a> IntoIterator for &'a Curve
Auto Trait Implementations§
impl !Freeze for Curve
impl RefUnwindSafe for Curve
impl Send for Curve
impl Sync for Curve
impl Unpin for Curve
impl UnwindSafe for Curve
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
Mutably borrows from an owned value. Read more