UNPKG
@rawify/vector3
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
The RAW JavaScript 3D Vector library
github.com/rawify/Vector3.js
rawify/Vector3.js
@rawify/vector3
/
_
/
vectory
/
bench
/
rand.js
4 lines
(3 loc)
•
106 B
JavaScript
View Raw
1
2
3
4
module
.
exports
=
function
rand
(
from
, to
) {
return
Math
.
floor
(
Math
.
random
() * (to -
from
+
1
)) +
from
}