multiply method

Vector4 multiply(
  1. Vector4 v
)

Implementation

Vector4 multiply(Vector4 v) {
  x *= v.x;
  y *= v.y;
  z *= v.z;
  w *= v.w;

  return this;
}