13 template <
typename T, std::
size_t Z, std::
size_t S>
14 std::string matrixRep(
const Matrix<T, Z, S>& m) {
16 ss <<
"Matrix<" << Z <<
"x" << S <<
">"
17 << internal::typeCharRep<T>() <<
" {";
19 for(
int i = 0; i < Z; ++i) {
25 for(
int j = 0; j < S; ++j) {
29 ss << internal::numberToRep(m.data[i][j]);
41 template <
typename T, std::
size_t Z, std::
size_t S>
42 std::ostream& operator<<(std::ostream& out, const Matrix<T, Z, S>& m) {
43 return (out << matrixRep(m));
This file is part of the Lumina Graphics Framework.