X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_noise%2Fnoise.cpp;h=d26f7702673a9cfe5158e97b82ccec3f05450b81;hb=75635270584b5775982adbd70250a0ebc7e3e76b;hp=c2643de3243455981f88c968645700ee1a6e31ce;hpb=16b3beced25134bef064705568ecb893a6be4e79;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_noise/noise.cpp b/synfig-core/trunk/src/modules/mod_noise/noise.cpp index c2643de..d26f770 100644 --- a/synfig-core/trunk/src/modules/mod_noise/noise.cpp +++ b/synfig-core/trunk/src/modules/mod_noise/noise.cpp @@ -1,20 +1,21 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file noise.cpp ** \brief blehh ** ** $Id: noise.cpp,v 1.2 2005/01/13 06:48:39 darco Exp $ ** ** \legal -** Copyright (c) 2002 Robert B. Quattlebaum Jr. +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. ** -** You may not copy, print, publish, or in any -** other way distribute this software without -** a prior written agreement with -** the copyright holder. +** This package is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +** General Public License for more details. ** \endlegal */ /* ========================================================================= */ @@ -30,31 +31,31 @@ #include "noise.h" -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include #endif /* === M A C R O S ========================================================= */ -using namespace sinfg; +using namespace synfig; using namespace std; using namespace etl; /* === G L O B A L S ======================================================= */ -SINFG_LAYER_INIT(Noise); -SINFG_LAYER_SET_NAME(Noise,"noise"); -SINFG_LAYER_SET_LOCAL_NAME(Noise,_("Noise Gradient")); -SINFG_LAYER_SET_CATEGORY(Noise,_("Gradients")); -SINFG_LAYER_SET_VERSION(Noise,"0.0"); -SINFG_LAYER_SET_CVS_ID(Noise,"$Id: noise.cpp,v 1.2 2005/01/13 06:48:39 darco Exp $"); +SYNFIG_LAYER_INIT(Noise); +SYNFIG_LAYER_SET_NAME(Noise,"noise"); +SYNFIG_LAYER_SET_LOCAL_NAME(Noise,_("Noise Gradient")); +SYNFIG_LAYER_SET_CATEGORY(Noise,_("Gradients")); +SYNFIG_LAYER_SET_VERSION(Noise,"0.0"); +SYNFIG_LAYER_SET_CVS_ID(Noise,"$Id: noise.cpp,v 1.2 2005/01/13 06:48:39 darco Exp $"); /* === P R O C E D U R E S ================================================= */ @@ -168,27 +169,27 @@ Noise::color_func(const Point &point, float pixel_size,Context context)const } inline float -Noise::calc_supersample(const sinfg::Point &x, float pw,float ph)const +Noise::calc_supersample(const synfig::Point &x, float pw,float ph)const { return 0.0f; } void -Noise::set_time(sinfg::Context context, sinfg::Time t)const +Noise::set_time(synfig::Context context, synfig::Time t)const { curr_time=t; context.set_time(t); } void -Noise::set_time(sinfg::Context context, sinfg::Time t, const sinfg::Point &point)const +Noise::set_time(synfig::Context context, synfig::Time t, const synfig::Point &point)const { curr_time=t; context.set_time(t,point); } -sinfg::Layer::Handle -Noise::hit_check(sinfg::Context context, const sinfg::Point &point)const +synfig::Layer::Handle +Noise::hit_check(synfig::Context context, const synfig::Point &point)const { if(get_blend_method()==Color::BLEND_STRAIGHT && get_amount()>=0.5) return const_cast(this);