| 143 | |
| 144 | template <class T> |
| 145 | static Vec3<T> |
| 146 | closestPointTo1(Line3<T> line, const Vec3<T> &p) |
| 147 | { |
| 148 | MATH_EXC_ON; |
| 149 | return line.closestPointTo(p); |
| 150 | } |
| 151 | |
| 152 | template <class T> |
| 153 | static Vec3<T> |
nothing calls this directly
no test coverage detected