QVM: Quaternions, Vectors, Matrices

operator*=(mat,scalar)

#include <boost/qvm/mat_operations.hpp>

namespace boost
{
    namespace qvm
    {
        //Only enabled if: is_mat<A>::value && is_scalar<B>::value
        template <class A,class B>
        A & operator*=( A & a, B b );
    }
}

Effects:

This operation multiplies the matrix a matrix by the scalar b.

Returns:

a.