Skip to content

Path Render

Path Render module

The Path Render module takes an SVG-style path string and draws it on the panel using the fill colour, stroke colour, and stroke width you supply. It is purely a renderer — there is no editing. Wire it to a Path Editor or any other source of a path string (a Patch Memory, a Text Entry, a List Entry, etc.) to display the shape.

Path Render and Path Editor share the same d-string format, so the same path can be edited in one and displayed in the other.

PinTypeDefaultDescription
PathText(empty)The SVG d-string. Supports M L H V C Z (absolute) and m l h v c z (relative). Nothing is drawn while empty
Fill ColorTextEEEEEEHex RRGGBB or AARRGGBB. An empty string disables the fill
Stroke ColorText000000Hex RRGGBB or AARRGGBB. An empty string disables the stroke
Stroke WidthFloat1.0Stroke width in pixels. Zero or negative disables the stroke

Closed subpaths (those ending in Z) are filled. Open subpaths are not filled even when a fill colour is set — only their stroke is drawn.