PathBuilder

Struct PathBuilder 

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

A builder for paths.

Implementations§

Source§

impl PathBuilder

Source

pub fn new() -> Self

Creates a new path builder.

Source

pub fn move_to(self, x: f32, y: f32) -> Self

Moves the current point to x, y.

Source

pub fn line_to(self, x: f32, y: f32) -> Self

Adds a line segment from the current point to x, y.

Source

pub fn quad_to(self, cx: f32, cy: f32, x: f32, y: f32) -> Self

Adds a quadratic bezier from the current point to x, y, using a control point of cx, cy.

Source

pub fn rect(self, rect: &Rect) -> Self

Adds a rect to the path.

Source

pub fn cubic_to( self, x: f32, y: f32, cx1: f32, cy1: f32, cx2: f32, cy2: f32, ) -> Self

Adds a cubic bezier from the current point to x, y, using control points cx1, cy1 and cx2, cy2.

Source

pub fn arc( self, x: f32, y: f32, radius: f32, start_angle: f32, sweep_angle: f32, ) -> Self

Adds an arc approximated by quadratic beziers with center x, y and radius r starting at start_angle and sweeping by sweep_angle. For a positive sweep_angle the sweep is done clockwise, for a negative sweep_angle the sweep is done counterclockwise.

Source

pub fn close(self) -> Self

Closes the current subpath.

Source

pub fn build(self) -> Path

Builds the path.

Trait Implementations§

Source§

impl Debug for PathBuilder

Source§

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

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

impl Default for PathBuilder

Source§

fn default() -> PathBuilder

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

Auto Trait Implementations§

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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, 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.