16 lines
344 B
C++
16 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");
|
||
|
}
|