Added clamp function
This commit is contained in:
parent
712b9bd682
commit
3ceca7b635
@ -137,6 +137,11 @@ test:
|
|||||||
$best_key = $key
|
$best_key = $key
|
||||||
return $best
|
return $best
|
||||||
|
|
||||||
|
externally ($ clamped between $min and $max) means:
|
||||||
|
if ($ < $min): return $min
|
||||||
|
if ($ > $max): return $max
|
||||||
|
return $
|
||||||
|
|
||||||
# Random functions
|
# Random functions
|
||||||
externally (seed random with $) means:
|
externally (seed random with $) means:
|
||||||
lua> ("
|
lua> ("
|
||||||
|
Loading…
Reference in New Issue
Block a user