1
0
Fork 0
flightgear/src/Main/FGInterpolator.cxx
Thomas Geymayer 4b21dc51ee Replace SGInterpolator with new advanced interpolation system.
Allow for advanced animations using easing functions and adapters
for interpolating specific property types (eg. CSS colors).
Old behavior should not have changed.
2013-03-16 16:45:03 +01:00

15 lines
344 B
C++

/*
* FGInterpolator.cxx
*
* Created on: 16.03.2013
* Author: tom
*/
#include "FGInterpolator.hxx"
#include <simgear/scene/util/ColorInterpolator.hxx>
//------------------------------------------------------------------------------
FGInterpolator::FGInterpolator()
{
addInterpolatorFactory<simgear::ColorInterpolator>("color");
}