| 797 | |
| 798 | template <class S, class T> |
| 799 | static Matrix44<T> |
| 800 | rmul44(Matrix44<T> &mat2, Matrix44<S> &mat1) |
| 801 | { |
| 802 | MATH_EXC_ON; |
| 803 | Matrix44<T> mat1T; |
| 804 | mat1T.setValue (mat1); |
| 805 | return mat1T * mat2; |
| 806 | } |
| 807 | |
| 808 | template <class S, class T> |
| 809 | static const Matrix44<T> & |