Array Range
Create array of numbers by setting start, end and step length.
Node Data | |
|---|---|
Display name | |
Array Range | |
Internal name | |
Node_Array_Range | |
Inheritances | |
| Node_Processor | |
| Node_Array_Range | |
Inputs | |
enum |
Type |
Range | |
float |
Start |
float |
End |
float |
Step |
bool |
Inclusive |
Outputs | |
float |
Array |
Create an array containing range of numbers.
Properties
| Start | The first number in the range. |
| End | The last number in the range. |
| Step | The amount to increment each number by. |
If the Start and End is the same value, the output will be an array size Step with the value of Start. If End is less than Start, then the Step should be negative.