multiply method

Vector3 multiply(
  1. Vector3 v
)

Multiplies the given 3D vector with this 3D vector.

Implementation

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

	return this;
}