set method

Plane set(
  1. Vector3 normal,
  2. double constant
)

Sets the given values to this plane.

Implementation

Plane set(Vector3 normal, double constant ) {
	this.normal = normal;
	this.constant = constant;

	return this;
}