mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-05 14:27:45 +02:00
add parameters
This commit is contained in:
@@ -1 +1,2 @@
|
||||
function rand() = rands(0, 1, 1)[0];
|
||||
function rand(min_value = 0, max_value = 1, seed_value) =
|
||||
is_undef(seed_value) ? rands(min_value, max_value , 1)[0] : rands(min_value, max_value , 1, seed_value)[0];
|
Reference in New Issue
Block a user