Array3Iterator Op
Iterates over an array in steps of three and outputs three values
Summary (oneliner)
Full Name
- Ops.Array.Array3Iterator
- Core Op - Official cables op
- MIT
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Op Licence
Caniuse query
INPUT PORTS
Execute (Trigger)
Starts the iteration
Array (Array)
The array to iterate over
Step (Number)
If bigger then 1
, values will be skipped, e.g. when Step
is 2
every other triplet will be skipped
OUTPUT PORTS
Trigger (Trigger)
Triggers for every iteration step (triplet in the array)
Index (Number)
The index of the triplet
Value 1 (Number)
First value of the current triplet (e.g. x)
Value 2 (Number)
Second value of the current triplet (e.g. y)
Value 3 (Number)
Third value of the current triplet (e.g. z)