Freestyle: remove a bunch of debug prints in the python code, these are confusing

and don't give any meaningful info to users.
This commit is contained in:
Brecht Van Lommel
2013-09-26 16:29:54 +00:00
parent f06b440d63
commit 5a201fa479
5 changed files with 16 additions and 16 deletions

View File

@@ -60,7 +60,7 @@ class pyViewMapGradientNormBP1D(BinaryPredicate1D):
BinaryPredicate1D.__init__(self)
self._GetGradient = pyViewMapGradientNormF1D(l, IntegrationType.MEAN)
def __call__(self, i1,i2):
print("compare gradient")
#print("compare gradient")
return (self._GetGradient(i1) > self._GetGradient(i2))
class pyShuffleBP1D(BinaryPredicate1D):