X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_noise%2Fdistort.cpp;h=1660c7dba474eadb702e8e718e08566dc314a660;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=950e7cc39c8585796374a771f56d5252d9c48c8e;hpb=ee42de12e3d9ba6c7105ab7b2344c9ec1fcef620;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_noise/distort.cpp b/synfig-core/trunk/src/modules/mod_noise/distort.cpp index 950e7cc..1660c7d 100644 --- a/synfig-core/trunk/src/modules/mod_noise/distort.cpp +++ b/synfig-core/trunk/src/modules/mod_noise/distort.cpp @@ -1,6 +1,6 @@ /* === S Y N F I G ========================================================= */ /*! \file distort.cpp -** \brief blehh +** \brief Implementation of the "Noise Distort" layer ** ** $Id$ ** @@ -53,8 +53,8 @@ using namespace etl; SYNFIG_LAYER_INIT(NoiseDistort); SYNFIG_LAYER_SET_NAME(NoiseDistort,"noise_distort"); -SYNFIG_LAYER_SET_LOCAL_NAME(NoiseDistort,_("Noise Distort")); -SYNFIG_LAYER_SET_CATEGORY(NoiseDistort,_("Distortions")); +SYNFIG_LAYER_SET_LOCAL_NAME(NoiseDistort,N_("Noise Distort")); +SYNFIG_LAYER_SET_CATEGORY(NoiseDistort,N_("Distortions")); SYNFIG_LAYER_SET_VERSION(NoiseDistort,"0.0"); SYNFIG_LAYER_SET_CVS_ID(NoiseDistort,"$Id$"); @@ -66,7 +66,7 @@ NoiseDistort::NoiseDistort(): size(1,1) { set_blend_method(Color::BLEND_STRAIGHT); - smooth=Random::SMOOTH_COSINE; + smooth=RandomNoise::SMOOTH_COSINE; detail=4; speed=0; random.set_seed(time(NULL)); @@ -85,8 +85,8 @@ NoiseDistort::color_func(const Point &point, float /*supersample*/,Context conte int i; Time time; time=speed*curr_time; - Random::SmoothType temp_smooth(smooth); - Random::SmoothType smooth((!speed && temp_smooth == Random::SMOOTH_SPLINE) ? Random::SMOOTH_FAST_SPLINE : temp_smooth); + RandomNoise::SmoothType temp_smooth(smooth); + RandomNoise::SmoothType smooth((!speed && temp_smooth == RandomNoise::SMOOTH_SPLINE) ? RandomNoise::SMOOTH_FAST_SPLINE : temp_smooth); { Vector vect(0,0); @@ -201,17 +201,17 @@ NoiseDistort::get_param_vocab()const .set_local_name(_("Size")) ); ret.push_back(ParamDesc("seed") - .set_local_name(_("Random Seed")) + .set_local_name(_("RandomNoise Seed")) ); ret.push_back(ParamDesc("smooth") .set_local_name(_("Interpolation")) .set_description(_("What type of interpolation to use")) .set_hint("enum") - .add_enum_value(Random::SMOOTH_DEFAULT, "nearest", _("Nearest Neighbor")) - .add_enum_value(Random::SMOOTH_LINEAR, "linear", _("Linear")) - .add_enum_value(Random::SMOOTH_COSINE, "cosine", _("Cosine")) - .add_enum_value(Random::SMOOTH_SPLINE, "spline", _("Spline")) - .add_enum_value(Random::SMOOTH_CUBIC, "cubic", _("Cubic")) + .add_enum_value(RandomNoise::SMOOTH_DEFAULT, "nearest", _("Nearest Neighbor")) + .add_enum_value(RandomNoise::SMOOTH_LINEAR, "linear", _("Linear")) + .add_enum_value(RandomNoise::SMOOTH_COSINE, "cosine", _("Cosine")) + .add_enum_value(RandomNoise::SMOOTH_SPLINE, "spline", _("Spline")) + .add_enum_value(RandomNoise::SMOOTH_CUBIC, "cubic", _("Cubic")) ); ret.push_back(ParamDesc("detail") .set_local_name(_("Detail"))