X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Flyr_std%2Fstretch.cpp;h=c54cf67d1e89e2ca1489d254c7f45709b5f9de4f;hb=44bccb5e0f65738a88be04586da0a5f452a25fc6;hp=dc98f3f35de4b5c6cb58f01cdfb7856f059da31b;hpb=754e5b519a62baa512ed0159548956499960d1a1;p=synfig.git diff --git a/synfig-core/trunk/src/modules/lyr_std/stretch.cpp b/synfig-core/trunk/src/modules/lyr_std/stretch.cpp index dc98f3f..c54cf67 100644 --- a/synfig-core/trunk/src/modules/lyr_std/stretch.cpp +++ b/synfig-core/trunk/src/modules/lyr_std/stretch.cpp @@ -2,7 +2,7 @@ /*! \file stretch.cpp ** \brief Template Header ** -** $Id: stretch.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $ +** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley @@ -57,7 +57,7 @@ SYNFIG_LAYER_SET_NAME(Layer_Stretch,"stretch"); SYNFIG_LAYER_SET_LOCAL_NAME(Layer_Stretch,_("Stretch")); SYNFIG_LAYER_SET_CATEGORY(Layer_Stretch,_("Distortions")); SYNFIG_LAYER_SET_VERSION(Layer_Stretch,"0.1"); -SYNFIG_LAYER_SET_CVS_ID(Layer_Stretch,"$Id: stretch.cpp,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $"); +SYNFIG_LAYER_SET_CVS_ID(Layer_Stretch,"$Id$"); /* === P R O C E D U R E S ================================================= */ @@ -71,14 +71,14 @@ Layer_Stretch::Layer_Stretch(): { } - + bool Layer_Stretch::set_param(const String & param, const ValueBase &value) { IMPORT(amount); IMPORT(center); - - return false; + + return false; } ValueBase @@ -89,15 +89,15 @@ Layer_Stretch::get_param(const String ¶m)const EXPORT_NAME(); EXPORT_VERSION(); - - return ValueBase(); + + return ValueBase(); } Layer::Vocab Layer_Stretch::get_param_vocab()const { Layer::Vocab ret; - + ret.push_back(ParamDesc("amount") .set_local_name(_("Amount")) ); @@ -105,7 +105,7 @@ Layer_Stretch::get_param_vocab()const ret.push_back(ParamDesc("center") .set_local_name(_("Center")) ); - + return ret; } @@ -127,17 +127,17 @@ Layer_Stretch::get_color(Context context, const Point &pos)const return context.get_color(npos); } -class ::Stretch_Trans : public Transform +class Stretch_Trans : public Transform { etl::handle layer; public: Stretch_Trans(const Layer_Stretch* x):Transform(x->get_guid()),layer(x) { } - + synfig::Vector perform(const synfig::Vector& x)const { return Vector((x[0]-layer->center[0])*layer->amount[0]+layer->center[0],(x[1]-layer->center[1])*layer->amount[1]+layer->center[1]); } - + synfig::Vector unperform(const synfig::Vector& x)const { return Vector((x[0]-layer->center[0])/layer->amount[0]+layer->center[0],(x[1]-layer->center[1])/layer->amount[1]+layer->center[1]);