| 130 | |
| 131 | template <class T> |
| 132 | static Plane3<T> |
| 133 | mul (const Plane3<T> &plane, const Matrix44<T> &M) |
| 134 | { |
| 135 | MATH_EXC_ON; |
| 136 | return plane * M; |
| 137 | } |
| 138 | |
| 139 | template <class T> |
| 140 | static void |
nothing calls this directly
no outgoing calls
no test coverage detected