| 538 | |
| 539 | template<class T> |
| 540 | inline float trianglePointDist(const vec3<T> &t0, const vec3<T> &t1, const vec3<T> &t2, const vec3<T> &p) { |
| 541 | return sqrtf(trianglePointDistSq(t0, t1, t2, p)); |
| 542 | } |
| 543 | } |
| 544 | |
| 545 |
nothing calls this directly
no test coverage detected