| 439 | |
| 440 | template <class T> |
| 441 | static bool |
| 442 | notequal(const Plane3<T> &p1, const Plane3<T> &p2) |
| 443 | { |
| 444 | if(p1.normal != p2.normal || p1.distance != p2.distance) |
| 445 | return true; |
| 446 | else |
| 447 | return false; |
| 448 | } |
| 449 | |
| 450 | template <class T> |
| 451 | static Plane3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected