intersectsPlane method

bool intersectsPlane(
  1. Plane plane
)

Returns true if the given plane intersects this plane.

Implementation

bool intersectsPlane(Plane plane ) {
	final d = normal.dot( plane.normal );
	return ( d.abs() != 1 );
}