[][src]Struct lyon_path::builder::WithSvg

pub struct WithSvg<Builder: PathBuilder> { /* fields omitted */ }

Implements an SVG-like building interface on top of a PathBuilder.

Implementations

impl<Builder: PathBuilder> WithSvg<Builder>[src]

pub fn new(builder: Builder) -> Self[src]

pub fn build(self) -> Builder::PathType where
    Builder: Build
[src]

pub fn flattened(self, tolerance: f32) -> WithSvg<Flattened<Builder>>[src]

pub fn transformed<Transform>(
    self,
    transform: Transform
) -> WithSvg<Transformed<Builder, Transform>> where
    Transform: Transformation<f32>, 
[src]

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

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

pub fn close(&mut self)[src]

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

pub fn cubic_bezier_to(
    &mut self,
    ctrl1: Point,
    ctrl2: Point,
    to: Point
) -> EndpointId
[src]

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

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

pub fn reserve(&mut self, endpoints: usize, ctrl_points: usize)[src]

impl<Builder, Transform> WithSvg<Transformed<Builder, Transform>> where
    Builder: PathBuilder,
    Transform: Transformation<f32>, 
[src]

pub fn set_transform(&mut self, transform: Transform)[src]

Trait Implementations

impl<Builder: PathBuilder + Build> Build for WithSvg<Builder>[src]

type PathType = Builder::PathType

The type of object that is created by this builder.

impl<Builder: PathBuilder> SvgPathBuilder for WithSvg<Builder>[src]

Auto Trait Implementations

impl<Builder> RefUnwindSafe for WithSvg<Builder> where
    Builder: RefUnwindSafe
[src]

impl<Builder> Send for WithSvg<Builder> where
    Builder: Send
[src]

impl<Builder> Sync for WithSvg<Builder> where
    Builder: Sync
[src]

impl<Builder> Unpin for WithSvg<Builder> where
    Builder: Unpin
[src]

impl<Builder> UnwindSafe for WithSvg<Builder> where
    Builder: UnwindSafe
[src]

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