3dSynth

Docs / Node Sculptor

Open in the interactive docs reader

Range

N evenly-spaced values between min and max — endpoints included. The list is emitted as a PointArray whose x-channel holds the value.

Node

Interactive preview is available in the interactive reader.

Sockets

min, max, count (in)
Floats / Int. Optional overrides for the parameters.
values (out)
PointArray. count entries of [value, 0, 0].

Parameters

Min
Start value. Default: 0.
Max
End value. Default: 1.
Count
Number of samples. Default: 11. Must be >= 2 (otherwise the step is ill-defined).

How It Works

Samples:

values[k] = min + k * (max - min) / (count - 1)

for k in 0 .. count-1. The first sample lands exactly on min, the last on max.

Tips