X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Flyr_std%2Fzoom.cpp;fp=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Flyr_std%2Fzoom.cpp;h=a1a06ce41c1a3a2949dad73e4213d0234b84fa31;hb=28f28705612902c15cd0702cc891fba35bf2d2df;hp=1d632a1916504a1d05d6e11f9cb50afb6b3ffac8;hpb=2c43cbfff01496919316f600ee76112be551392d;p=synfig.git diff --git a/synfig-core/trunk/src/modules/lyr_std/zoom.cpp b/synfig-core/trunk/src/modules/lyr_std/zoom.cpp index 1d632a1..a1a06ce 100644 --- a/synfig-core/trunk/src/modules/lyr_std/zoom.cpp +++ b/synfig-core/trunk/src/modules/lyr_std/zoom.cpp @@ -1,4 +1,4 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file zoom.cpp ** \brief writeme ** @@ -29,15 +29,15 @@ #endif #include "zoom.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #endif @@ -45,12 +45,12 @@ /* === G L O B A L S ======================================================= */ -SINFG_LAYER_INIT(Zoom); -SINFG_LAYER_SET_NAME(Zoom,"zoom"); -SINFG_LAYER_SET_LOCAL_NAME(Zoom,_("Zoom")); -SINFG_LAYER_SET_CATEGORY(Zoom,_("Transform")); -SINFG_LAYER_SET_VERSION(Zoom,"0.1"); -SINFG_LAYER_SET_CVS_ID(Zoom,"$Id: zoom.cpp,v 1.2 2005/01/24 03:08:17 darco Exp $"); +SYNFIG_LAYER_INIT(Zoom); +SYNFIG_LAYER_SET_NAME(Zoom,"zoom"); +SYNFIG_LAYER_SET_LOCAL_NAME(Zoom,_("Zoom")); +SYNFIG_LAYER_SET_CATEGORY(Zoom,_("Transform")); +SYNFIG_LAYER_SET_VERSION(Zoom,"0.1"); +SYNFIG_LAYER_SET_CVS_ID(Zoom,"$Id: zoom.cpp,v 1.2 2005/01/24 03:08:17 darco Exp $"); /* === P R O C E D U R E S ================================================= */ @@ -104,8 +104,8 @@ Zoom::get_param_vocab()const return ret; } -sinfg::Layer::Handle -Zoom::hit_check(sinfg::Context context, const sinfg::Point &pos)const +synfig::Layer::Handle +Zoom::hit_check(synfig::Context context, const synfig::Point &pos)const { return context.hit_check((pos-center)/exp(amount)+center); } @@ -122,12 +122,12 @@ class Zoom_Trans : public Transform public: Zoom_Trans(const Zoom* x):Transform(x->get_guid()),layer(x) { } - sinfg::Vector perform(const sinfg::Vector& x)const + synfig::Vector perform(const synfig::Vector& x)const { return (x-layer->center)*exp(layer->amount)+layer->center; } - sinfg::Vector unperform(const sinfg::Vector& x)const + synfig::Vector unperform(const synfig::Vector& x)const { return (x-layer->center)/exp(layer->amount)+layer->center; } @@ -154,8 +154,8 @@ Zoom::accelerated_render(Context context,Surface *surface,int quality, const Ren return context.accelerated_render(surface,quality,desc,cb); } -sinfg::Rect -Zoom::get_full_bounding_rect(sinfg::Context context)const +synfig::Rect +Zoom::get_full_bounding_rect(synfig::Context context)const { return context.get_full_bounding_rect(); }