Unity.Mathematics.int4 A uniformly random int4 value.
Returns a uniformly random int4 value with all components in the interval [-2147483647, 2147483647].
| Parameter | Description |
|---|---|
| max | The componentwise maximum value to generate, exclusive. |
Unity.Mathematics.int4 A uniformly random int4 value with all components in the range [0, max).
Returns a uniformly random int4 value with all components in the interval [0, max).
| Parameter | Description |
|---|---|
| min | The componentwise minimum value to generate, inclusive. |
| max | The componentwise maximum value to generate, exclusive. |
Unity.Mathematics.int4 A uniformly random int4 between [min, max).
Returns a uniformly random int4 value with all components in the interval [min, max).