summaryrefslogtreecommitdiff
path: root/src/glm/gtx/projection.hpp
blob: fa8e0728af20e2e0367f2e6ae766ce244b36498e (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
///////////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
///////////////////////////////////////////////////////////////////////////////////////////////////
// Created : 2005-12-21
// Updated : 2009-03-06
// Licence : This source is under MIT License
// File    : glm/gtx/projection.hpp
///////////////////////////////////////////////////////////////////////////////////////////////////
// Dependency:
// - GLM core
///////////////////////////////////////////////////////////////////////////////////////////////////

#ifndef glm_gtx_projection
#define glm_gtx_projection

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

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

namespace glm{
namespace gtx{
namespace projection ///< GLM_GTX_projection extension: Projection of a vector to other one
{
	/// \addtogroup gtx_projection
	/// @{

	//! Projects x on Normal.
	//! From GLM_GTX_projection extension.
	template <typename T> 
	detail::tvec2<T> proj(
		detail::tvec2<T> const & x, 
		detail::tvec2<T> const & Normal);
		
	//! Projects x on Normal.
	//! From GLM_GTX_projection extension.
	template <typename T> 
	detail::tvec3<T> proj(
		detail::tvec3<T> const & x, 
		detail::tvec3<T> const & Normal);

	//! Projects x on Normal.
	//! From GLM_GTX_projection extension.
	template <typename T> 
	detail::tvec4<T> proj(
		detail::tvec4<T> const & x, 
		detail::tvec4<T> const & Normal);

	/// @}
}//namespace projection
}//namespace gtx
}//namespace glm

#include "projection.inl"

namespace glm{using namespace gtx::projection;}

#endif//glm_gtx_projection