| 89 | |
| 90 | template <class T> |
| 91 | static Line3<T> |
| 92 | projectScreenToRay (Frustum<T> &f, const Vec2<T> &p) |
| 93 | { |
| 94 | MATH_EXC_ON; |
| 95 | return f.projectScreenToRay(p); |
| 96 | } |
| 97 | |
| 98 | template <class T> |
| 99 | static Line3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected