Returns true if the given plane intersects this plane.
bool intersectsPlane(Plane plane ) { final d = normal.dot( plane.normal ); return ( d.abs() != 1 ); }