| 215 | |
| 216 | template <class T> |
| 217 | static void |
| 218 | setDirection(Line3<T> &line, const Vec3<T> &dir) |
| 219 | { |
| 220 | MATH_EXC_ON; |
| 221 | line.dir = dir.normalized(); |
| 222 | } |
| 223 | |
| 224 | template <class T> |
| 225 | static void |
nothing calls this directly
no test coverage detected