X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_filter%2Fhalftone3.cpp;h=a2a4283d18669a607939c6f1dffaf05489b6d0e9;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=6df7d5d13b381be99ec39ad746f25a06e6a11f7b;hpb=8ef042c40521681cea99944097c4f90a5ac6cf74;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_filter/halftone3.cpp b/synfig-core/trunk/src/modules/mod_filter/halftone3.cpp index 6df7d5d..a2a4283 100644 --- a/synfig-core/trunk/src/modules/mod_filter/halftone3.cpp +++ b/synfig-core/trunk/src/modules/mod_filter/halftone3.cpp @@ -1,12 +1,12 @@ /* === S Y N F I G ========================================================= */ /*! \file halftone3.cpp -** \brief blehh +** \brief Implementation of the "Halftone 3" layer ** ** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley -** Copyright (c) 2007 Chris Moore +** Copyright (c) 2007-2008 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -75,7 +75,7 @@ Halftone3::Halftone3() { tone[i].size=size; tone[i].type=type; - tone[i].offset=(synfig::Point(0,0)); + tone[i].origin=(synfig::Point(0,0)); tone[i].angle=Angle::deg(30.0)*(float)i; } @@ -254,13 +254,17 @@ Halftone3::set_param(const String & param, const ValueBase &value) IMPORT_PLUS(subtractive,sync()); IMPORT(tone[0].angle); - IMPORT(tone[0].offset); + IMPORT(tone[0].origin); IMPORT(tone[1].angle); - IMPORT(tone[1].offset); + IMPORT(tone[1].origin); IMPORT(tone[2].angle); - IMPORT(tone[2].offset); + IMPORT(tone[2].origin); + + IMPORT_AS(tone[0].origin,"tone[0].offset"); + IMPORT_AS(tone[1].origin,"tone[1].offset"); + IMPORT_AS(tone[2].origin,"tone[2].offset"); return Layer_Composite::set_param(param,value); } @@ -278,13 +282,13 @@ Halftone3::get_param(const String & param)const EXPORT(subtractive); EXPORT(tone[0].angle); - EXPORT(tone[0].offset); + EXPORT(tone[0].origin); EXPORT(tone[1].angle); - EXPORT(tone[1].offset); + EXPORT(tone[1].origin); EXPORT(tone[2].angle); - EXPORT(tone[2].offset); + EXPORT(tone[2].origin); EXPORT_NAME(); EXPORT_VERSION(); @@ -321,13 +325,13 @@ Halftone3::get_param_vocab()const .set_local_name(chan_name+_(" Color")) ); - ret.push_back(ParamDesc(strprintf("tone[%d].offset",i)) - .set_local_name(chan_name+_(" Mask Offset")) + ret.push_back(ParamDesc(strprintf("tone[%d].origin",i)) + .set_local_name(chan_name+_(" Mask Origin")) .set_is_distance() ); ret.push_back(ParamDesc(strprintf("tone[%d].angle",i)) .set_local_name(chan_name+_(" Mask Angle")) - .set_origin(strprintf("tone[%d].offset",i)) + .set_origin(strprintf("tone[%d].origin",i)) ); }