UNPKG
@newkrok/three-utils
Version:
latest (2.0.1)
2.0.1
2.0.0
1.1.0
1.0.0
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
0.0.3
0.0.2
0.0.1
THREE JS related utils
github.com/NewKrok/three-utils
NewKrok/three-utils
@newkrok/three-utils
/
src
/
js
/
newkrok
/
three-utils
/
vector3-utils.js
8 lines
(6 loc)
•
167 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
const
absVector3 = (vector) => { vector.x = Math.
abs
(vector.x); vector.y = Math.
abs
(vector.y); vector.z = Math.
abs
(vector.z);
return
vector; };