Struct lyon_tessellation::EventQueueBuilder[][src]

pub struct EventQueueBuilder { /* fields omitted */ }

Implementations

impl EventQueueBuilder[src]

pub fn new() -> Self[src]

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

pub fn build(mut self: Self) -> EventQueue[src]

pub fn set_path(
    &mut self,
    tolerance: f32,
    sweep_orientation: Orientation,
    path: impl Iterator<Item = PathEvent>
)
[src]

pub fn set_path_with_ids(
    &mut self,
    tolerance: f32,
    sweep_orientation: Orientation,
    path_events: impl Iterator<Item = IdEvent>,
    points: &impl PositionStore
)
[src]

pub fn end(&mut self, first: Point, first_endpoint_id: EndpointId)[src]

pub fn begin(&mut self, to: Point, to_id: EndpointId)[src]

pub fn line_segment(&mut self, to: Point, to_id: EndpointId, t0: f32, t1: f32)[src]

pub fn quadratic_bezier_segment(
    &mut self,
    ctrl: Point,
    to: Point,
    to_id: EndpointId
)
[src]

pub fn cubic_bezier_segment(
    &mut self,
    ctrl1: Point,
    ctrl2: Point,
    to: Point,
    to_id: EndpointId
)
[src]

pub fn reserve(&mut self, n: usize)[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, 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.