divide method

Vector3 divide(
  1. Vector3 v
)

Divides the given 3D vector through this 3D vector.

Implementation

Vector3 divide(Vector3 v ) {
	x /= v.x;
	y /= v.y;
	z /= v.z;

	return this;
}