X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fvaluenode_reciprocal.cpp;h=d31a995fef10a041248a07dd4d1ef07907e5b87d;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=023e32526b9ae882c2c7af8a2255acb18f8191d6;hpb=1e5f0eeebce699f15e011e3cddbf5f790b2e003f;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/valuenode_reciprocal.cpp b/synfig-core/trunk/src/synfig/valuenode_reciprocal.cpp index 023e325..d31a995 100644 --- a/synfig-core/trunk/src/synfig/valuenode_reciprocal.cpp +++ b/synfig-core/trunk/src/synfig/valuenode_reciprocal.cpp @@ -151,6 +151,9 @@ ValueNode_Reciprocal::get_link_index_from_name(const String &name)const ValueBase ValueNode_Reciprocal::operator()(Time t)const { + if (getenv("SYNFIG_DEBUG_VALUENODE_OPERATORS")) + printf("%s:%d operator()\n", __FILE__, __LINE__); + Real link = (*link_) (t).get(Real()); Real epsilon = (*epsilon_) (t).get(Real()); Real infinite = (*infinite_)(t).get(Real());