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

#ifndef glm_gtx_simplex
#define glm_gtx_simplex

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

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

namespace glm{
namespace gtx{
namespace spline ///< GLM_GTX_simplex extension: Spline functions
{
    /// \addtogroup gtx_spline
    ///@{
            
    //! Return a point from a catmull rom curve.
    //! From GLM_GTX_spline extension.
    template <typename genType> 
    genType catmullRom(
                        genType const & v1, 
                        genType const & v2, 
                        genType const & v3, 
                        genType const & v4, 
                        typename genType::value_type const & s);
            
    //! Return a point from a hermite curve.
    //! From GLM_GTX_spline extension.
    template <typename genType> 
    genType hermite(
                    genType const & v1, 
                    genType const & t1, 
                    genType const & v2, 
                    genType const & t2, 
                    typename genType::value_type const & s);
            
    //! Return a point from a cubic curve. 
    //! From GLM_GTX_spline extension.
    template <typename genType> 
    genType cubic(
                    genType const & v1, 
                    genType const & v2, 
                    genType const & v3, 
                    genType const & v4, 
                    typename genType::value_type const & s);
            
    /// @}
}// namespace simplex
}// namespace gtx
}// namespace glm

#include "simplex.inl"

namespace glm{using namespace gtx::simplex;}

#endif//glm_gtx_spline