Rasterized Path

Rasterizes a Path — samples it into a finite list of points based on the given resolution parameters.

Most modules that consume paths do their own rasterization on the fly. Use this module when you need a rasterized path explicitly — for example when attaching a Path Controller to a path without going through Shape Extrusion.

Name Type Description
Path Path The path to rasterize
Name Type Description
Path Path The rasterized path (a fixed set of sample points)

Range

Defines which portion of the path to rasterize. For closed paths, From repeats endlessly; for open paths it is clamped.

Resolution

Controls how many sample points are created. Higher values produce a smoother result.

Optimize

When enabled, sample points are placed based on the path's curvature rather than at a fixed distance. In this mode, Resolution controls the curvature angle delta at which new points are inserted.