UNPKG

@newkrok/three-utils

Version:
8 lines (6 loc) 167 B
export const absVector3 = (vector) => { vector.x = Math.abs(vector.x); vector.y = Math.abs(vector.y); vector.z = Math.abs(vector.z); return vector; };