blob: 7aadf6ac3bd34c0c586ed11b480beb487de90f2e (
plain)
1
2
3
4
5
6
7
8
|
#include "geometricPlane.h"
bool
GeometricPlane::isIntersect(PlaneRelation a, PlaneRelation b)
{
return ((a == PlaneRelation::Above && b == PlaneRelation::Below)
|| (a == PlaneRelation::Below && b == PlaneRelation::Above));
}
|