Houdini 22.0 Nodes APEX nodes

array::Range

Builds an array from a range of integers.

On this page
Since 22.0

Creates a range of integers on the half-open interval [start, stop) and stores them to an array. The range can be sampled at a stride using step, which determines the number of elements between samples.

Inputs

start: Int

The first number in the range (inclusive). The default value is 0.

stop: Int

The last number in the range (exclusive). The default value is 0.

step: Int

The increment value between range values. The default value is 1.

Outputs

array: IntArray

The sequence of integers sampled from the range.

See also

APEX nodes