Skip to content

Commit

Permalink
fix: remove console output
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotzbua authored and florianfesti committed Apr 1, 2024
1 parent f5d0583 commit e6e8f61
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion boxes/generators/coindisplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def __call__(self, length, **kw):
a_l2 = self.settings.coin_plate * math.sin(self.settings.angle)
a = math.degrees(self.settings.angle)

print(a, a_l, a_l2)
self.corner(-a)
# Draw the angled edge, but set the thickness to two temporarily
# as two pieces will go on top of another
Expand Down
2 changes: 1 addition & 1 deletion boxes/generators/fanhole.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def render(self):
for py in (inset, d-inset):
self.hole(px, py, r_h)
self.moveTo(d/2, d/2)
print(self.style)

if self.style == "CW Swirl":
self.ctx.scale(-1, 1)
self.swirl(d/2, self.inner_disc, self.arms)
Expand Down
1 change: 0 additions & 1 deletion boxes/generators/rack19halfwidth.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ def hole_wire(self):
"""Hole for a wire."""
self.moveTo(3)
self.hole(0, 0, 3.25)
print('hi')
self.moveTo(3)

hole_map = {
Expand Down

0 comments on commit e6e8f61

Please sign in to comment.