From 3ceca7b635666342bed107bede4eafc1b5a5f482 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 7 Jan 2019 20:44:39 -0800 Subject: [PATCH] Added clamp function --- core/math.nom | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/math.nom b/core/math.nom index f7a0afb..088da12 100644 --- a/core/math.nom +++ b/core/math.nom @@ -137,6 +137,11 @@ test: $best_key = $key return $best +externally ($ clamped between $min and $max) means: + if ($ < $min): return $min + if ($ > $max): return $max + return $ + # Random functions externally (seed random with $) means: lua> ("