Vector3.random constructor
Vector3.random([
- Random? rng
Generate random vector in the range (0, 0, 0) to (1, 1, 1). You can optionally pass your own random number generator.
Implementation
factory Vector3.random([math.Random? rng]) {
rng ??= math.Random();
return Vector3(rng.nextDouble(), rng.nextDouble(), rng.nextDouble());
}