Struct lyon_path::PathCommands

source ·
pub struct PathCommands { /* private fields */ }
Expand description

The commands of a path encoded in a single array using IDs to refer to endpoints and control points externally.

PathCommands is a good fit when the a custom endpoint and control point types are needed or when their the user needs full control over their storage.

Representation

Path commands contains a single array of 32 bits integer values encoding path commands, endpoint IDs or control point IDs.

 __________________________________________________________________________
|       |          |      |          |         |              |          |
| Begin |EndpointID| Line |EndpointID|Quadratic|ControlPointId|EndpointID| ...
|_______|__________|______|__________|_________|______________|__________|_

Example

use lyon_path::{EndpointId, PathCommands};

let mut cmds = PathCommands::builder();

cmds.begin(EndpointId(0));
cmds.line_to(EndpointId(1));
cmds.line_to(EndpointId(2));
cmds.end(true);

let cmds = cmds.build();

Implementations§

source§

impl PathCommands

source

pub fn builder() -> PathCommandsBuilder

Creates a PathCommandsBuilder to create path commands.

source

pub fn iter(&self) -> Iter<'_>

Returns an iterator over the path commands.

source

pub fn as_slice(&self) -> PathCommandsSlice<'_>

Returns a view on the path commands.

source

pub fn path_slice<'l, Endpoint, ControlPoint>( &'l self, endpoints: &'l [Endpoint], control_points: &'l [ControlPoint] ) -> CommandsPathSlice<'_, Endpoint, ControlPoint>

Returns a view on a path made of these commands with endpoint and control point slices.

source

pub fn events<'l, Endpoint, ControlPoint>( &'l self, endpoints: &'l [Endpoint], control_points: &'l [ControlPoint] ) -> Events<'_, Endpoint, ControlPoint>

Returns an iterator over the path, with endpoints and control points.

source

pub fn event(&self, id: EventId) -> IdEvent

Returns the event for a given event ID.

source

pub fn next_event_id_in_path(&self, id: EventId) -> Option<EventId>

Returns the next event id within the path.

source

pub fn next_event_id_in_sub_path(&self, id: EventId) -> EventId

Returns the next event id within the sub-path.

Loops back to the first event after the end of the sub-path.

Trait Implementations§

source§

impl Clone for PathCommands

source§

fn clone(&self) -> PathCommands

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PathCommands

source§

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

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

impl<'l> From<&'l PathCommands> for PathCommandsSlice<'l>

source§

fn from(commands: &'l PathCommands) -> Self

Converts to this type from the input type.
source§

impl<'l> IntoIterator for &'l PathCommands

§

type Item = Event<EndpointId, ControlPointId>

The type of the elements being iterated over.
§

type IntoIter = Iter<'l>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Iter<'l>

Creates an iterator from a value. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.