|
|
@ -48,8 +48,8 @@ namespace detail |
|
|
|
template <typename T> struct tmat4x3; |
|
|
|
template <typename T> struct tmat4x3; |
|
|
|
template <typename T> struct tmat4x4; |
|
|
|
template <typename T> struct tmat4x4; |
|
|
|
|
|
|
|
|
|
|
|
//! \brief Template for 3 * 3 matrix of floating-point numbers.
|
|
|
|
//! @brief Template for 3 * 3 matrix of floating-point numbers.
|
|
|
|
//! \ingroup core_template
|
|
|
|
//! @ingroup core_template
|
|
|
|
template <typename T>
|
|
|
|
template <typename T>
|
|
|
|
struct tmat3x3 |
|
|
|
struct tmat3x3 |
|
|
|
{ |
|
|
|
{ |
|
|
@ -66,8 +66,10 @@ namespace detail |
|
|
|
typedef tmat3x3<T> transpose_type; |
|
|
|
typedef tmat3x3<T> transpose_type; |
|
|
|
|
|
|
|
|
|
|
|
public: |
|
|
|
public: |
|
|
|
// Implementation detail
|
|
|
|
/// Implementation detail
|
|
|
|
|
|
|
|
/// @cond DETAIL
|
|
|
|
GLM_FUNC_DECL tmat3x3<T> _inverse() const; |
|
|
|
GLM_FUNC_DECL tmat3x3<T> _inverse() const; |
|
|
|
|
|
|
|
/// @endcond
|
|
|
|
|
|
|
|
|
|
|
|
private: |
|
|
|
private: |
|
|
|
// Data
|
|
|
|
// Data
|
|
|
|