1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-19 13:01:37 +02:00

add comment

This commit is contained in:
Justin Lin
2019-08-16 09:50:02 +08:00
parent 4754438be4
commit bf7a481011

View File

@@ -1,2 +1,12 @@
/**
* reverse.scad
*
* @copyright Justin Lin, 2019
* @license https://opensource.org/licenses/lgpl-3.0.html
*
* @see https://openhome.cc/eGossip/OpenSCAD/lib2-rand.html
*
**/
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];