X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Flyr_std%2Fjulia.h;h=7a2ef275ef2070048cfe1aad626792aa522a7a79;hb=28f28705612902c15cd0702cc891fba35bf2d2df;hp=e2c863136349b9b1758e0deef37ef8bcf71e9e02;hpb=16b3beced25134bef064705568ecb893a6be4e79;p=synfig.git diff --git a/synfig-core/trunk/src/modules/lyr_std/julia.h b/synfig-core/trunk/src/modules/lyr_std/julia.h index e2c8631..7a2ef27 100644 --- a/synfig-core/trunk/src/modules/lyr_std/julia.h +++ b/synfig-core/trunk/src/modules/lyr_std/julia.h @@ -1,5 +1,5 @@ /*! ======================================================================== -** Sinfg +** Synfig ** Template Header File ** $Id: julia.h,v 1.1.1.1 2005/01/04 01:23:10 darco Exp $ ** @@ -20,15 +20,15 @@ /* === S T A R T =========================================================== */ -#ifndef __SINFG_JULIA_H -#define __SINFG_JULIA_H +#ifndef __SYNFIG_JULIA_H +#define __SYNFIG_JULIA_H /* === H E A D E R S ======================================================= */ -#include -#include -#include -#include +#include +#include +#include +#include /* === M A C R O S ========================================================= */ @@ -36,23 +36,23 @@ /* === C L A S S E S & S T R U C T S ======================================= */ -using namespace sinfg; +using namespace synfig; using namespace std; using namespace etl; -class Julia : public sinfg::Layer +class Julia : public synfig::Layer { - SINFG_LAYER_MODULE_EXT + SYNFIG_LAYER_MODULE_EXT private: - sinfg::Color icolor; - sinfg::Color ocolor; - sinfg::Angle color_shift; + synfig::Color icolor; + synfig::Color ocolor; + synfig::Angle color_shift; Real bailout; Real lp; int iterations; - sinfg::Point seed; + synfig::Point seed; bool distort_inside; bool distort_outside; @@ -72,11 +72,11 @@ private: public: Julia(); - virtual bool set_param(const sinfg::String ¶m, const sinfg::ValueBase &value); + virtual bool set_param(const synfig::String ¶m, const synfig::ValueBase &value); - virtual ValueBase get_param(const sinfg::String ¶m)const; + virtual ValueBase get_param(const synfig::String ¶m)const; - virtual Color get_color(sinfg::Context context, const sinfg::Point &pos)const; + virtual Color get_color(synfig::Context context, const synfig::Point &pos)const; virtual Vocab get_param_vocab()const; };