| 429 | |
| 430 | template <class T> |
| 431 | static bool |
| 432 | equal(const Plane3<T> &p1, const Plane3<T> &p2) |
| 433 | { |
| 434 | if(p1.normal == p2.normal && p1.distance == p2.distance) |
| 435 | return true; |
| 436 | else |
| 437 | return false; |
| 438 | } |
| 439 | |
| 440 | template <class T> |
| 441 | static bool |
nothing calls this directly
no outgoing calls
no test coverage detected