add curve/bezier, curve/catmull_rom_sprine

This commit is contained in:
bolero-MURAKAMI 2015-01-10 19:30:09 +09:00
parent 3029507c05
commit b55e74de78
5 changed files with 325 additions and 0 deletions

16
sprout/math/curve.hpp Normal file
View file

@ -0,0 +1,16 @@
/*=============================================================================
Copyright (c) 2011-2014 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_MATH_CURVE_HPP
#define SPROUT_MATH_CURVE_HPP
#include <sprout/config.hpp>
#include <sprout/math/curve/curve_point.hpp>
#include <sprout/math/curve/bezier.hpp>
#include <sprout/math/curve/catmull_rom_sprine.hpp>
#endif // #ifndef SPROUT_MATH_CURVE_HPP