normalize method

Vec3 normalize()

Normalize this vector

Implementation

Vec3 normalize () {
  return divideScalar(length());
}