Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
clamp(val:Number, min:Number, max:Number):Number
ulfben
Mar 6th, 2016
640
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
ActionScript 3
0.17 KB
| None
|
0
0
raw
download
clone
embed
print
report
private
function
clamp
(
val
:
Number
,
min
:
Number
,
max
:
Number
)
:
Number
{
return
(
val
>
max
)
?
max
:
(
(
val
<
min
)
?
min
:
val
)
;
//= Math.max(min, Math.min(max, val))
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Fast Track to $13K in 48 Hours
CSS | 39 min ago | 0.90 KB
Blockchain Exploit Strategy
CSS | 39 min ago | 0.90 KB
Untitled
42 min ago | 9.16 KB
Untitled
2 hours ago | 4.70 KB
Untitled
4 hours ago | 5.07 KB
Untitled
4 hours ago | 8.04 KB
Untitled
6 hours ago | 7.47 KB
Untitled
8 hours ago | 4.96 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!