Plane constructor

Plane([
  1. Vector3? normal,
  2. double constant = 0
])

Constructs a new plane with the given values.

Implementation

Plane([Vector3? normal, this.constant = 0 ]) {
	this.normal = normal ?? Vector3( 0, 0, 1 );
}