2011-06-07 23:58:37 +00:00
|
|
|
/// @ref gtx_spline
|
|
|
|
/// @file glm/gtx/spline.hpp
|
|
|
|
///
|
|
|
|
/// @see core (dependence)
|
|
|
|
///
|
2012-11-13 16:54:11 +00:00
|
|
|
/// @defgroup gtx_spline GLM_GTX_spline
|
2011-06-07 23:58:37 +00:00
|
|
|
/// @ingroup gtx
|
2016-05-23 20:55:49 +00:00
|
|
|
///
|
2011-06-07 23:58:37 +00:00
|
|
|
/// @brief Spline functions
|
2016-05-23 20:55:49 +00:00
|
|
|
///
|
2011-06-07 23:58:37 +00:00
|
|
|
/// <glm/gtx/spline.hpp> need to be included to use these functionalities.
|
2010-04-29 10:54:07 +00:00
|
|
|
|
2014-07-13 23:48:27 +00:00
|
|
|
#pragma once
|
2010-04-29 10:54:07 +00:00
|
|
|
|
|
|
|
// Dependency:
|
|
|
|
#include "../glm.hpp"
|
|
|
|
#include "../gtx/optimum_pow.hpp"
|
|
|
|
|
2016-09-01 22:30:37 +00:00
|
|
|
#if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED)
|
2011-01-19 17:10:55 +00:00
|
|
|
# pragma message("GLM: GLM_GTX_spline extension included")
|
|
|
|
#endif
|
|
|
|
|
2011-06-10 15:45:17 +00:00
|
|
|
namespace glm
|
2010-04-29 10:54:07 +00:00
|
|
|
{
|
2011-06-07 10:48:54 +00:00
|
|
|
/// @addtogroup gtx_spline
|
2011-05-18 14:38:03 +00:00
|
|
|
/// @{
|
2011-02-05 00:49:50 +00:00
|
|
|
|
2014-11-25 23:27:12 +00:00
|
|
|
/// Return a point from a catmull rom curve.
|
2013-05-12 13:51:11 +00:00
|
|
|
/// @see gtx_spline extension.
|
2011-05-18 13:55:06 +00:00
|
|
|
template <typename genType>
|
2013-10-10 22:21:27 +00:00
|
|
|
GLM_FUNC_DECL genType catmullRom(
|
2011-05-18 13:55:06 +00:00
|
|
|
genType const & v1,
|
|
|
|
genType const & v2,
|
|
|
|
genType const & v3,
|
|
|
|
genType const & v4,
|
2013-10-10 22:21:27 +00:00
|
|
|
typename genType::value_type const & s);
|
2010-04-29 10:54:07 +00:00
|
|
|
|
2014-11-25 23:27:12 +00:00
|
|
|
/// Return a point from a hermite curve.
|
2013-05-12 13:51:11 +00:00
|
|
|
/// @see gtx_spline extension.
|
|
|
|
template <typename genType>
|
2013-10-10 22:21:27 +00:00
|
|
|
GLM_FUNC_DECL genType hermite(
|
2011-05-18 13:55:06 +00:00
|
|
|
genType const & v1,
|
|
|
|
genType const & t1,
|
|
|
|
genType const & v2,
|
|
|
|
genType const & t2,
|
2013-10-10 22:21:27 +00:00
|
|
|
typename genType::value_type const & s);
|
2010-04-29 10:54:07 +00:00
|
|
|
|
2014-11-25 23:27:12 +00:00
|
|
|
/// Return a point from a cubic curve.
|
2013-05-12 13:51:11 +00:00
|
|
|
/// @see gtx_spline extension.
|
2011-05-18 13:55:06 +00:00
|
|
|
template <typename genType>
|
2013-10-10 22:21:27 +00:00
|
|
|
GLM_FUNC_DECL genType cubic(
|
2011-05-18 13:55:06 +00:00
|
|
|
genType const & v1,
|
|
|
|
genType const & v2,
|
|
|
|
genType const & v3,
|
|
|
|
genType const & v4,
|
2013-10-10 22:21:27 +00:00
|
|
|
typename genType::value_type const & s);
|
2010-04-29 10:54:07 +00:00
|
|
|
|
2011-05-18 14:38:03 +00:00
|
|
|
/// @}
|
2010-04-29 10:54:07 +00:00
|
|
|
}//namespace glm
|
|
|
|
|
|
|
|
#include "spline.inl"
|