diff --git a/docs/api/math/Math.html b/docs/api/math/Math.html index 2c91e14bbef784761df7892aede19acf2c07dfa3..383177b0e57e88ae523e28031f0dbd602eae0b24 100644 --- a/docs/api/math/Math.html +++ b/docs/api/math/Math.html @@ -16,23 +16,14 @@

Methods

-

[method:Float clamp]( [page:Float x], [page:Float a], [page:Float b] )

+

[method:Float clamp]( [page:Float value], [page:Float min], [page:Float max] )

- x — Value to be clamped.
- a — Minimum value
- b — Maximum value. + value — Value to be clamped.
+ min — Minimum value
+ max — Maximum value.
- Clamps the *x* to be between *a* and *b*. -
- -

[method:Float clampBottom]( [page:Float x], [page:Float a] )

-
- x — Value to be clamped.
- a — Minimum value -
-
- Clamps the *x* to be larger than *a*. + Clamps the *value* to be between *min* and *max*.

[method:Float mapLinear]( [page:Float x], [page:Float a1], [page:Float a2], [page:Float b1], [page:Float b2] )

@@ -97,7 +88,7 @@
Returns a value between 0-1 that represents the percentage that x has moved between min and max, but smoothed or slowed down the closer X is to the min and max.

- + [link:http://en.wikipedia.org/wiki/Smoothstep Wikipedia]
@@ -110,7 +101,7 @@
Returns a value between 0-1. It works the same as smoothstep, but more smooth.
- +

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]