summaryrefslogtreecommitdiff
path: root/src/glm/gtx/matrix_query.hpp
blob: d19a5352c513234321372b0a11ffde91aae5f255 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
///////////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
///////////////////////////////////////////////////////////////////////////////////////////////////
// Created : 2007-03-05
// Updated : 2007-03-05
// Licence : This source is under MIT License
// File    : glm/gtx/matrix_query.hpp
///////////////////////////////////////////////////////////////////////////////////////////////////
// Dependency:
// - GLM core
///////////////////////////////////////////////////////////////////////////////////////////////////

#ifndef glm_gtx_matrix_query
#define glm_gtx_matrix_query

// Dependency:
#include "../glm.hpp"

#if(defined(GLM_MESSAGES) && !defined(glm_ext))
#	pragma message("GLM: GLM_GTX_matrix_query extension included")
#endif

namespace glm{
namespace gtx{
namespace matrix_query ///< GLM_GTX_matrix_query: Query to evaluate matrix properties
{
	/// \addtogroup gtx_matrix_query
	/// @{

	//! Return if a matrix a null matrix.
	//! From GLM_GTX_matrix_query extension.
	template<typename T> 
	bool isNull(
		const detail::tmat2x2<T>& m, 
		const T epsilon = std::numeric_limits<T>::epsilon());
		
	//! Return if a matrix a null matrix.
	//! From GLM_GTX_matrix_query extension.
	template<typename T> 
	bool isNull(
		const detail::tmat3x3<T>& m, 
		const T epsilon = std::numeric_limits<T>::epsilon());
		
	//! Return if a matrix a null matrix.
	//! From GLM_GTX_matrix_query extension.
	template<typename T> 
	bool isNull(
		const detail::tmat4x4<T>& m, 
		const T epsilon = std::numeric_limits<T>::epsilon());
			
	//! Return if a matrix an identity matrix. 
	//! From GLM_GTX_matrix_query extension.
	template<typename genType> 
	bool isIdentity(
		const genType& m, 
		const typename genType::value_type epsilon = std::numeric_limits<typename genType::value_type>::epsilon());

	//! Return if a matrix a normalized matrix.
	//! From GLM_GTX_matrix_query extension.
	template<typename T> 
	bool isNormalized(
		const detail::tmat2x2<T>& m, 
		const T epsilon = std::numeric_limits<T>::epsilon());
		
	//! Return if a matrix a normalized matrix.
	//! From GLM_GTX_matrix_query extension.
	template<typename T> 
	bool isNormalized(
		const detail::tmat3x3<T>& m, 
		const T epsilon = std::numeric_limits<T>::epsilon());
		
	//! Return if a matrix a normalized matrix.
	//! From GLM_GTX_matrix_query extension.
	template<typename T> 
	bool isNormalized(
		const detail::tmat4x4<T>& m, 
		const T epsilon = std::numeric_limits<T>::epsilon());

	//! Return if a matrix an orthonormalized matrix.
	//! From GLM_GTX_matrix_query extension.
	template<typename genType> 
	bool isOrthogonal(
		const genType& m, 
		const typename genType::value_type epsilon = std::numeric_limits<typename genType::value_type>::epsilon());

	/// @}
}//namespace matrix_query
}//namespace gtx
}//namespace glm

#include "matrix_query.inl"

namespace glm{using namespace gtx::matrix_query;}

#endif//glm_gtx_matrix_query