EVOLUTION-MANAGER
Edit File: blendElement.h
// // C++ Interface: blendElement // // Description: // // // Author: Yorn <yorn@gmx.net>, (C) 2009 // // Copyright: See COPYING file that comes with this distribution // // #ifndef BLENDELEMENT_H #define BLENDELEMENT_H #include "rgbPlane.h" /** @author Yorn <yorn@gmx.net> */ class BlendElement { public: enum BlendState { blend_off, blend_slideIn, blend_on, blend_slideOut, blend_end }; RGBPlane picture; double startTime; double endTime; bool smooth; BlendState state; float intensity; BlendElement(); BlendElement ( RGBPlane _picture, double _startTime, double _endTime, bool _smooth ); virtual ~BlendElement(); }; #endif