closest_point.hpp
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 #ifndef GLM_GTX_closest_point
39 #define GLM_GTX_closest_point GLM_VERSION
40 
41 // Dependency:
42 #include "../glm.hpp"
43 
44 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
45 # pragma message("GLM: GLM_GTX_closest_point extension included")
46 #endif
47 
48 namespace glm
49 {
52 
55  template <typename T>
56  detail::tvec3<T> closestPointOnLine(
57  detail::tvec3<T> const & point,
58  detail::tvec3<T> const & a,
59  detail::tvec3<T> const & b);
60 
62 }// namespace glm
63 
64 #include "closest_point.inl"
65 
66 #endif//GLM_GTX_closest_point