Hide _inverse from doxygen #164

master
Christophe Riccio ago%!(EXTRA string=13 years)
parent 89fcd31730
commit 9b600406e0
  1. 4
      glm/core/type_mat2x2.hpp
  2. 8
      glm/core/type_mat3x3.hpp
  3. 4
      glm/core/type_mat4x4.hpp

@ -66,8 +66,10 @@ namespace detail
typedef tmat2x2<T> transpose_type;
public:
// Implementation detail
/// Implementation detail
/// @cond DETAIL
GLM_FUNC_DECL tmat2x2<T> _inverse() const;
/// @endcond
private:
//////////////////////////////////////

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

@ -66,8 +66,10 @@ namespace detail
typedef tmat4x4<T> transpose_type;
public:
// Implementation detail
/// Implementation detail
/// @cond DETAIL
GLM_FUNC_DECL tmat4x4<T> _inverse() const;
/// @endcond
private:
// Data

Loading…
Cancel
Save