copy method

Plane copy(
  1. Plane plane
)

Copies all values from the given plane to this plane.

Implementation

Plane copy(Plane plane ) {
	normal.copy( plane.normal );
	constant = plane.constant;

	return this;
}