X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fvaluenode_gradientrotate.cpp;h=74d1fdf76360d1035d7a600c747cac44332b89ce;hb=4f9e4d835da8089a953dfa5f508643c538924921;hp=8af32284a9650770b18fd84c66c621e359b457a4;hpb=e3acc0b267b14fda5db3c7bbb2f218b993ef84b3;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/valuenode_gradientrotate.cpp b/synfig-core/trunk/src/synfig/valuenode_gradientrotate.cpp index 8af3228..74d1fdf 100644 --- a/synfig-core/trunk/src/synfig/valuenode_gradientrotate.cpp +++ b/synfig-core/trunk/src/synfig/valuenode_gradientrotate.cpp @@ -1,20 +1,21 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \file valuenode_gradientrotate.cpp ** \brief Template File ** -** $Id: valuenode_gradientrotate.cpp,v 1.1.1.1 2005/01/04 01:23:15 darco Exp $ +** $Id$ ** ** \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 */ /* ========================================================================= */ @@ -40,7 +41,7 @@ using namespace std; using namespace etl; -using namespace sinfg; +using namespace synfig; /* === M A C R O S ========================================================= */ @@ -50,8 +51,8 @@ using namespace sinfg; /* === M E T H O D S ======================================================= */ -sinfg::ValueNode_GradientRotate::ValueNode_GradientRotate(): - LinkableValueNode(sinfg::ValueBase::TYPE_GRADIENT) +synfig::ValueNode_GradientRotate::ValueNode_GradientRotate(): + LinkableValueNode(synfig::ValueBase::TYPE_GRADIENT) { set_link("gradient",ValueNode_Const::create(Gradient())); set_link("offset",ValueNode_Const::create(Real(0))); @@ -71,24 +72,24 @@ ValueNode_GradientRotate::create(const ValueBase& x) if(id!=ValueBase::TYPE_GRADIENT) { assert(0); - throw runtime_error("sinfg::ValueNode_GradientRotate:Bad type "+ValueBase::type_name(id)); - } + throw runtime_error("synfig::ValueNode_GradientRotate:Bad type "+ValueBase::type_name(id)); + } ValueNode_GradientRotate* value_node=new ValueNode_GradientRotate(); value_node->set_gradient(ValueNode_Const::create(x.get(Gradient()))); assert(value_node->get_type()==id); - + return value_node; } -sinfg::ValueNode_GradientRotate::~ValueNode_GradientRotate() +synfig::ValueNode_GradientRotate::~ValueNode_GradientRotate() { unlink_all(); } bool -sinfg::ValueNode_GradientRotate::set_gradient(ValueNode::Handle a) +synfig::ValueNode_GradientRotate::set_gradient(ValueNode::Handle a) { if(a->get_type()!=ValueBase::TYPE_GRADIENT&& !PlaceholderValueNode::Handle::cast_dynamic(a)) return false; @@ -99,7 +100,7 @@ sinfg::ValueNode_GradientRotate::set_gradient(ValueNode::Handle a) } bool -sinfg::ValueNode_GradientRotate::set_offset(ValueNode::Handle b) +synfig::ValueNode_GradientRotate::set_offset(ValueNode::Handle b) { if(b->get_type()!=ValueBase::TYPE_REAL&& !PlaceholderValueNode::Handle::cast_dynamic(b)) return false; @@ -107,8 +108,8 @@ sinfg::ValueNode_GradientRotate::set_offset(ValueNode::Handle b) return true; } -sinfg::ValueBase -sinfg::ValueNode_GradientRotate::operator()(Time t)const +synfig::ValueBase +synfig::ValueNode_GradientRotate::operator()(Time t)const { Gradient gradient; gradient=(*ref_gradient)(t).get(gradient); @@ -116,7 +117,7 @@ sinfg::ValueNode_GradientRotate::operator()(Time t)const Gradient::iterator iter; for(iter=gradient.begin();iter!=gradient.end();++iter) iter->pos+=offset; - + return gradient; } @@ -169,7 +170,7 @@ ValueNode_GradientRotate::link_local_name(int i)const return _("Offset"); } return String(); -} +} String ValueNode_GradientRotate::link_name(int i)const @@ -183,7 +184,7 @@ ValueNode_GradientRotate::link_name(int i)const return "offset"; } return String(); -} +} int ValueNode_GradientRotate::get_link_index_from_name(const String &name)const