pub struct Path { /* private fields */ }
Expand description
A simple path data structure.
§Custom attributes
Paths can store a fixed number of extra f32
values per endpoint, called
“custom attributes” or “interpolated attributes” through the documentation.
These can be handy to represent arbitrary attributes such as variable colors,
line width, etc.
See also:
§Representation
Paths contain two buffers:
- a buffer of commands (Begin, Line, Quadratic, Cubic, Close or End),
- and a buffer of pairs of floats that can be endpoints control points or custom attributes.
The order of storage for points is determined by the sequence of commands. Custom attributes (if any) always directly follow endpoints. If there is an odd number of attributes, the last float of the each attribute sequence is set to zero and is not used.
__________________________
| | | |
| Begin | Line |Quadratic| ...
|_______|______|_________|_
__________________________________________________________________________
| | | | | | | |
|start x,y|attributes| to x, y |attributes|ctrl x,y | to x, y |attributes| ...
|_________|__________|_________|__________|_________|_________|__________|_
Implementations§
Source§impl Path
impl Path
Sourcepub fn builder_with_attributes(num_attributes: usize) -> BuilderWithAttributes
pub fn builder_with_attributes(num_attributes: usize) -> BuilderWithAttributes
Creates a BuilderWithAttributes to build a path with custom attributes.
Sourcepub fn svg_builder() -> WithSvg<BuilderImpl>
pub fn svg_builder() -> WithSvg<BuilderImpl>
Creates an WithSvg to build a path with a rich set of commands.
pub fn with_attributes(num_attributes: usize) -> Path
Sourcepub fn attributes(&self, endpoint: EndpointId) -> Attributes<'_>
pub fn attributes(&self, endpoint: EndpointId) -> Attributes<'_>
Returns a slice over an endpoint’s custom attributes.
Sourcepub fn id_iter(&self) -> IdIter<'_> ⓘ
pub fn id_iter(&self) -> IdIter<'_> ⓘ
Iterates over the endpoint and control point ids of the Path
.
Sourcepub fn iter_with_attributes(&self) -> IterWithAttributes<'_> ⓘ
pub fn iter_with_attributes(&self) -> IterWithAttributes<'_> ⓘ
Iterates over the entire Path
with custom attributes.
Sourcepub fn transformed<T: Transformation<f32>>(self, transform: &T) -> Self
pub fn transformed<T: Transformation<f32>>(self, transform: &T) -> Self
Applies a transform to all endpoints and control points of this path and Returns the result.
Sourcepub fn reversed(&self) -> IterNoAttributes<Reversed<'_>> ⓘ
pub fn reversed(&self) -> IterNoAttributes<Reversed<'_>> ⓘ
Returns a reversed version of this path in the form of an iterator
Sourcepub fn first_endpoint(&self) -> Option<(Point, Attributes<'_>)>
pub fn first_endpoint(&self) -> Option<(Point, Attributes<'_>)>
Returns the first endpoint and its custom attributes if any.
Sourcepub fn last_endpoint(&self) -> Option<(Point, Attributes<'_>)>
pub fn last_endpoint(&self) -> Option<(Point, Attributes<'_>)>
Returns the last endpoint and its custom attributes if any.