| 422 | |
| 423 | template <class T> |
| 424 | static bool |
| 425 | notequal(const Line3<T> &l1, const Line3<T> &l2) |
| 426 | { |
| 427 | if(l1.pos != l2.pos || l1.dir != l2.dir) |
| 428 | return true; |
| 429 | else |
| 430 | return false; |
| 431 | } |
| 432 | |
| 433 | template <class T> |
| 434 | class_<Line3<T> > |
nothing calls this directly
no outgoing calls
no test coverage detected