| 304 | |
| 305 | template <class T> |
| 306 | static bool |
| 307 | intersect1(Line3<T> &line, const Vec3<T> &v0, const Vec3<T> &v1, const Vec3<T> &v2, |
| 308 | Vec3<T> &pt, Vec3<T> &barycentric, bool &front) |
| 309 | { |
| 310 | MATH_EXC_ON; |
| 311 | return IMATH_NAMESPACE::intersect(line, v0, v1, v2, pt, barycentric, front); |
| 312 | } |
| 313 | |
| 314 | template <class T> |
| 315 | static object |
nothing calls this directly
no test coverage detected