simplex.hpp
00001 
00002 // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
00004 // Created : 2011-04-09
00005 // Updated : 2011-04-09
00006 // Licence : This source is under MIT License
00007 // File    : glm/gtx/simplex.hpp
00009 // Dependency:
00010 // - GLM core
00012 
00013 #ifndef glm_gtx_simplex
00014 #define glm_gtx_simplex
00015 
00016 // Dependency:
00017 #include "../glm.hpp"
00018 
00019 #if(defined(GLM_MESSAGES) && !defined(glm_ext))
00020 #       pragma message("GLM: GLM_GTX_simplex extension included")
00021 #endif
00022 
00023 namespace glm{
00024 namespace gtx{
00025 namespace spline 
00026 {
00029             
00032     template <typename genType> 
00033     genType catmullRom(
00034                         genType const & v1, 
00035                         genType const & v2, 
00036                         genType const & v3, 
00037                         genType const & v4, 
00038                         typename genType::value_type const & s);
00039             
00042     template <typename genType> 
00043     genType hermite(
00044                     genType const & v1, 
00045                     genType const & t1, 
00046                     genType const & v2, 
00047                     genType const & t2, 
00048                     typename genType::value_type const & s);
00049             
00052     template <typename genType> 
00053     genType cubic(
00054                     genType const & v1, 
00055                     genType const & v2, 
00056                     genType const & v3, 
00057                     genType const & v4, 
00058                     typename genType::value_type const & s);
00059             
00061 }// namespace simplex
00062 }// namespace gtx
00063 }// namespace glm
00064 
00065 #include "simplex.inl"
00066 
00067 namespace glm{using namespace gtx::simplex;}
00068 
00069 #endif//glm_gtx_spline
00070