Home | History | Annotate | Download | only in common

Lines Matching refs:Len

48 template <typename T, int Len>
49 inline Matrix<T, Len+1, Len+1> translationMatrix (const Vector<T, Len>& translation)
51 Matrix<T, Len+1, Len+1> res = Matrix<T, Len+1, Len+1>();
52 for (int row = 0; row < Len; row++)
53 res(row, Len) = translation.m_data[row];