equals method

bool equals(
  1. Plane plane
)

Returns true if the given plane is deep equal with this plane.

Implementation

bool equals(Plane plane ) {
	return plane.normal.equals( normal ) && plane.constant == constant;
}