3dSynth

Docs / Node Sculptor

Open in the interactive docs reader

Array Linear

Repeats geometry along a vector, producing count copies spaced by step. Works on Path, PointArray, Mesh, and Toolpath.

Node

Interactive preview is available in the interactive reader.

Sockets

geometry (in)
Path / PointArray / Mesh / Toolpath. Required.
step (in)
Vector3. Translation between successive copies.
count (in)
Int. Number of copies including the original.
path, points, mesh, toolpath (out)
The arrayed geometry on its matching output socket.

Parameters

Step
Offset between copies. Default [10, 0, 0] — 10 mm along X.
Count
Number of copies including the original. Default: 5.

How It Works

Copy k is placed at position original + k × step for k in 0 .. count-1. Paths and PointArrays are concatenated with no implicit joins between copies; meshes are combined into a single mesh (shared vertex buffer, no deduplication). Toolpaths get one segment per copy.

Tips