normalize method

Vector4 normalize()

Implementation

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