[][src]Struct lyon_path::PathState

pub struct PathState { /* fields omitted */ }

Represents the current state of a path while it is being built.

Methods

impl PathState[src]

pub fn new() -> Self[src]

pub fn current_position(&self) -> Point[src]

The current position.

pub fn start_position(&self) -> Point[src]

The position at the start of the current sub-path.

pub fn move_to(&mut self, to: Point)[src]

pub fn line_to(&mut self, to: Point)[src]

pub fn close(&mut self)[src]

pub fn quadratic_bezier_to(&mut self, ctrl: Point, to: Point)[src]

pub fn cubic_bezier_to(&mut self, _ctrl1: Point, ctrl2: Point, to: Point)[src]

pub fn arc(
    &mut self,
    center: Point,
    radii: Vector,
    sweep_angle: Angle,
    x_rotation: Angle
)
[src]

pub fn get_smooth_cubic_ctrl(&self) -> Point[src]

pub fn get_smooth_quadratic_ctrl(&self) -> Point[src]

pub fn relative_to_absolute(&self, v: Vector) -> Point[src]

Trait Implementations

impl Clone for PathState[src]

impl Copy for PathState[src]

impl Debug for PathState[src]

impl FlatPathBuilder for PathState[src]

impl PartialEq<PathState> for PathState[src]

impl PathBuilder for PathState[src]

impl PolygonBuilder for PathState[src]

impl StructuralPartialEq for PathState[src]

impl SvgBuilder for PathState[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.