|
@@ -52,15 +52,15 @@ namespace glm
|
|
|
/// @see gtc_matrix_access
|
|
/// @see gtc_matrix_access
|
|
|
template <typename genType>
|
|
template <typename genType>
|
|
|
GLM_FUNC_DECL typename genType::row_type row(
|
|
GLM_FUNC_DECL typename genType::row_type row(
|
|
|
- genType const & m,
|
|
|
|
|
- length_t const & index);
|
|
|
|
|
|
|
+ genType const & m,
|
|
|
|
|
+ length_t index);
|
|
|
|
|
|
|
|
/// Set a specific row to a matrix.
|
|
/// Set a specific row to a matrix.
|
|
|
/// @see gtc_matrix_access
|
|
/// @see gtc_matrix_access
|
|
|
template <typename genType>
|
|
template <typename genType>
|
|
|
GLM_FUNC_DECL genType row(
|
|
GLM_FUNC_DECL genType row(
|
|
|
genType const & m,
|
|
genType const & m,
|
|
|
- length_t const & index,
|
|
|
|
|
|
|
+ length_t index,
|
|
|
typename genType::row_type const & x);
|
|
typename genType::row_type const & x);
|
|
|
|
|
|
|
|
/// Get a specific column of a matrix.
|
|
/// Get a specific column of a matrix.
|
|
@@ -68,14 +68,14 @@ namespace glm
|
|
|
template <typename genType>
|
|
template <typename genType>
|
|
|
GLM_FUNC_DECL typename genType::col_type column(
|
|
GLM_FUNC_DECL typename genType::col_type column(
|
|
|
genType const & m,
|
|
genType const & m,
|
|
|
- length_t const & index);
|
|
|
|
|
|
|
+ length_t index);
|
|
|
|
|
|
|
|
/// Set a specific column to a matrix.
|
|
/// Set a specific column to a matrix.
|
|
|
/// @see gtc_matrix_access
|
|
/// @see gtc_matrix_access
|
|
|
template <typename genType>
|
|
template <typename genType>
|
|
|
GLM_FUNC_DECL genType column(
|
|
GLM_FUNC_DECL genType column(
|
|
|
genType const & m,
|
|
genType const & m,
|
|
|
- length_t const & index,
|
|
|
|
|
|
|
+ length_t index,
|
|
|
typename genType::col_type const & x);
|
|
typename genType::col_type const & x);
|
|
|
|
|
|
|
|
/// @}
|
|
/// @}
|