ori::prelude

Struct Curve

Source
pub struct Curve { /* private fields */ }
Expand description

A bezier curve.

Implementations§

Source§

impl Curve

Source

pub fn new() -> Curve

Create a new curve.

Source

pub fn rect(rect: Rect) -> Curve

Create a curve from a rectangle.

Source

pub fn ellipse(oval: Rect) -> Curve

Create a curve from an oval.

Source

pub fn circle(center: Point, radius: f32) -> Curve

Create a curve from a cicrle.

Source

pub fn get_hash(&self) -> u64

Get the hash of the curve.

This is a non-cryptographic fast hash, and is cached.

Source

pub fn len(&self) -> usize

Get the number of verbs in the curve.

Source

pub fn is_empty(&self) -> bool

Check if the curve is empty.

Source

pub fn is_valid(&self) -> bool

Check if the curve is valid.

Source

pub fn is_closed(&self) -> bool

Check if the curve is closed.

Source

pub fn bounds(&self) -> Rect

Get the bounds of the curve.

Source

pub fn clear(&mut self)

Clear the curve, retaining the allocated memory for reuse.

Source

pub fn points(&self) -> &[Point]

Get the points in the curve.

Source

pub fn verbs(&self) -> &[CurveVerb]

Get the verbs in the curve.

Source

pub fn last_point(&self) -> Option<Point>

Get the last point in the curve.

Source

pub fn move_to(&mut self, point: Point)

Move to a point.

Source

pub fn line_to(&mut self, point: Point)

Draw a line to a point.

Source

pub fn quad_to(&mut self, control: Point, point: Point)

Draw a quadratic bezier curve to a point, with a control point control.

Source

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.

Source

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.

Source

pub fn close(&mut self)

Close the contour.

Source

pub fn transform(&mut self, transform: Affine)

Transform the curve by the given affine transform.

Source

pub fn iter(&self) -> CurveIter<'_>

Get an iterator over the curve segments.

Source

pub fn contains(&self, point: Point, rule: FillRule) -> bool

Check if the curve contains a point using the given rule.

Source

pub fn stroke_curve(&mut self, curve: &Curve, stroke: Stroke)

Stroke the curve with the given stroke.

Source

pub fn push_rect(&mut self, rect: Rect)

Push a rectangle to the curve.

Source

pub fn push_oval(&mut self, oval: Rect)

Push an oval to the curve.

Source

pub fn push_rect_with_radius(&mut self, rect: Rect, radius: BorderRadius)

Push a rectangle with rounded corners to the curve.

Source

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 Clone for Curve

Source§

fn clone(&self) -> Curve

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Curve

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for Curve

Source§

fn default() -> Curve

Returns the “default value” for a type. Read more
Source§

impl From<Rect> for Curve

Source§

fn from(rect: Rect) -> Curve

Converts to this type from the input type.
Source§

impl Hash for Curve

Source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'a> IntoIterator for &'a Curve

Source§

type Item = CurveSegment

The type of the elements being iterated over.
Source§

type IntoIter = CurveIter<'a>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <&'a Curve as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl PartialEq for Curve

Source§

fn eq(&self, other: &Curve) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more