Nodes in this category deal with fundamental vector graphics data handling and operations.
Nodes
| Node | Details | Possible Types |
|---|---|---|
| Apply Transform | Applies the vector path's local transformation to its geometry and resets the transform to the identity. | List<Vector> → List<Vector> |
| Flatten Path | Node description coming soon. | List<Graphic> → List<Vector>List<Vector> → List<Vector> |
| Flatten Vector | Converts a | List<Graphic> → List<Vector>List<Vector> → List<Vector> |
| Map Points | Node description coming soon. | List<Vector> → List<Vector> |
| Pack Strips | Node description coming soon. | List<Graphic> → List<Graphic>List<Vector> → List<Vector>List<Raster> → List<Raster> |
| Points to Polyline | Creates a polyline from a series of vector points, replacing any existing segments and regions that may already exist. | List<Vector> → List<Vector> |
| Vec2 to Point | Converts a vec2 value into a vector path composed of a single anchor point. This is useful in conjunction with nodes that repeat it, followed by the "Points to Polyline" node to string together a path of the points. | Vec2 → List<Vector> |