| 151 | |
| 152 | template <class T> |
| 153 | static Vec3<T> |
| 154 | closestPointTo2(Line3<T> line, const Line3<T> &other) |
| 155 | { |
| 156 | MATH_EXC_ON; |
| 157 | return line.closestPointTo(other); |
| 158 | } |
| 159 | |
| 160 | template <class T> |
| 161 | static Vec3<T> |
nothing calls this directly
no test coverage detected