TuttleOFX  1
TetraInterpolator.hpp
Go to the documentation of this file.
00001 #ifndef _LUTENGINE_TETRA_INTERPOLATOR_HPP_
00002 #define _LUTENGINE_TETRA_INTERPOLATOR_HPP_
00003 
00004 #include "Interpolator.hpp"
00005 #include "AbstractLut.hpp"
00006 #include "Color.hpp"
00007 
00008 namespace tuttle {
00009 
00010 class TetraInterpolator : public Interpolator
00011 {
00012 public:
00013         TetraInterpolator() : Interpolator() {}
00014         Color interpolate( const AbstractLut* lut, const double x, const double y, const double z ) const;
00015 };
00016 
00017 }
00018 
00019 #endif