set method

Vector3 set(
  1. double x,
  2. double y,
  3. double z
)

Sets the given values to this 3D vector.

Implementation

Vector3 set(double x, double y, double z ) {
	this.x = x;
	this.y = y;
	this.z = z;

	return this;
}