normalize method

Vector3 normalize()

Implementation

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