EVOLUTION-MANAGER
Edit File: blendElement.cpp
// // C++ Implementation: blendElement // // Description: // // // Author: Yorn <yorn@gmx.net>, (C) 2009 // // Copyright: See COPYING file that comes with this distribution // // #include "blendElement.h" BlendElement::BlendElement() : startTime ( 0 ), endTime ( -1 ), smooth ( false ), state ( blend_off ), intensity ( 0.0 ) { } BlendElement::BlendElement ( RGBPlane _picture, double _startTime, double _endTime, bool _smooth ) : picture ( _picture ), startTime ( _startTime ), endTime ( _endTime ), smooth ( _smooth ), state ( blend_off ), intensity ( 0.0 ) { } BlendElement::~BlendElement() { }