Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / synfig / valuenode_exp.cpp
index 33e9a37..05d4b63 100644 (file)
@@ -6,6 +6,7 @@
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**     Copyright (c) 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
@@ -55,7 +56,7 @@ ValueNode_Exp::ValueNode_Exp(const ValueBase &value):
        switch(value.get_type())
        {
        case ValueBase::TYPE_REAL:
-               set_link("exp",ValueNode_Const::create(Real(1)));
+               set_link("exp",ValueNode_Const::create(Real(0)));
                set_link("scale",ValueNode_Const::create(value.get(Real())));
                break;
        default:
@@ -85,6 +86,9 @@ ValueNode_Exp::~ValueNode_Exp()
 ValueBase
 ValueNode_Exp::operator()(Time t)const
 {
+       if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS"))
+               printf("%s:%d operator()\n", __FILE__, __LINE__);
+
        return (exp((*exp_)(t).get(Real())) *
                        (*scale_)(t).get(Real()));
 }