| 110 | |
| 111 | template <class T> |
| 112 | static T |
| 113 | distanceTo1(Line3<T> &line, Vec3<T> &p) |
| 114 | { |
| 115 | MATH_EXC_ON; |
| 116 | return line.distanceTo(p); |
| 117 | } |
| 118 | |
| 119 | template <class T> |
| 120 | static T |
nothing calls this directly
no outgoing calls
no test coverage detected