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:
2013-09-26 16:29:54 +00:00
parent f06b440d63
commit 5a201fa479
5 changed files with 16 additions and 16 deletions

View File

@@ -459,7 +459,7 @@ class pyRandomColorShader(StrokeShader):
c0 = float(random.uniform(15,75))/100.0
c1 = float(random.uniform(15,75))/100.0
c2 = float(random.uniform(15,75))/100.0
print(c0, c1, c2)
#print(c0, c1, c2)
it = stroke.stroke_vertices_begin()
while not it.is_end:
it.object.attribute.color = (c0,c1,c2)