| 403 | |
| 404 | template <class T> |
| 405 | static Vec3<T> |
| 406 | reflectVector(Plane3<T> &plane, const Vec3<T> &v) |
| 407 | { |
| 408 | MATH_EXC_ON; |
| 409 | return plane.reflectVector(v); |
| 410 | } |
| 411 | |
| 412 | template <class T> |
| 413 | static Vec3<T> |
nothing calls this directly
no outgoing calls
no test coverage detected