[][src]Struct lyon_path::Builder

pub struct Builder { /* fields omitted */ }

Builds path object using the FlatPathBuilder interface.

See the builder module documentation.

Methods

impl Builder[src]

pub fn new() -> Self[src]

pub fn with_capacity(cap: usize) -> Self[src]

pub fn with_svg(self) -> SvgPathBuilder<Self>[src]

pub fn flattened(self, tolerance: f32) -> FlatteningBuilder<Self>[src]

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 polygon(&mut self, points: &[Point])[src]

Add a closed polygon.

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

pub fn cursor(&self) -> Cursor[src]

Returns a cursor to the next path event.

pub fn build(self) -> Path[src]

Trait Implementations

impl Build for Builder[src]

type PathType = Path

The type of object that is created by this builder.

impl FlatPathBuilder for Builder[src]

fn flat_event(&mut self, event: FlattenedEvent)[src]

fn flattened(self, tolerance: f32) -> FlatteningBuilder<Self> where
    Self: Sized
[src]

Returns a builder that approximates all curves with sequences of line segments.

impl PathBuilder for Builder[src]

fn path_event(&mut self, event: PathEvent)[src]

fn with_svg(self) -> SvgPathBuilder<Self> where
    Self: Sized
[src]

Returns a builder that support svg commands.

impl PolygonBuilder for Builder[src]

Auto Trait Implementations

impl Send for Builder

impl Sync for Builder

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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