Hide _inverse from doxygen #164

This commit is contained in:
Christophe Riccio 2012-01-23 10:37:45 +00:00
parent 89fcd31730
commit 9b600406e0
3 changed files with 12 additions and 6 deletions

View File

@ -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:
//////////////////////////////////////

View File

@ -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,9 +66,11 @@ namespace detail
typedef tmat3x3<T> transpose_type;
public:
// Implementation detail
/// Implementation detail
/// @cond DETAIL
GLM_FUNC_DECL tmat3x3<T> _inverse() const;
/// @endcond
private:
// Data
col_type value[3];

View File

@ -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