| 241 | |
| 242 | template <class T> |
| 243 | static void |
| 244 | closestPoints1(Line3<T> &line1, const Line3<T> &line2, Vec3<T> &p0, Vec3<T> &p1) |
| 245 | { |
| 246 | MATH_EXC_ON; |
| 247 | IMATH_NAMESPACE::closestPoints(line1, line2, p0, p1); |
| 248 | } |
| 249 | |
| 250 | template <class T> |
| 251 | static tuple |
nothing calls this directly
no outgoing calls
no test coverage detected