4b21dc51ee
Allow for advanced animations using easing functions and adapters for interpolating specific property types (eg. CSS colors). Old behavior should not have changed.
21 lines
332 B
C++
21 lines
332 B
C++
/*
|
|
* FGInterpolator.hxx
|
|
*
|
|
* Created on: 16.03.2013
|
|
* Author: tom
|
|
*/
|
|
|
|
#ifndef FG_INTERPOLATOR_HXX_
|
|
#define FG_INTERPOLATOR_HXX_
|
|
|
|
#include <simgear/props/PropertyInterpolationMgr.hxx>
|
|
|
|
class FGInterpolator:
|
|
public simgear::PropertyInterpolationMgr
|
|
{
|
|
public:
|
|
FGInterpolator();
|
|
};
|
|
|
|
|
|
#endif /* FG_INTERPOLATOR_HXX_ */
|