1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-30 20:37:43 +01:00
dotSCAD/docs/lib3x-rand.md
2021-02-24 14:33:56 +08:00

21 lines
467 B
Markdown

# rand
Random number generator. Generates a pseudo random number.
**Since:** 2.1
## Parameters
- `min_value` : Minimum value of random number range. Default to 0.
- `max_value` : Maximum value of random number range. Default to 1.
- `seed_value` : Optional. Seed value for random number generator for repeatable results.
## Examples
use <util/rand.scad>;
echo(rand());
echo(rand(1, 10));
echo(rand(seed_value = 4));