Skip to content

Commit

Permalink
Merge branch 'release/v0.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Aurich (I2SE GmbH) committed Jul 22, 2016
2 parents e84fcdb + a80db3e commit fbd872d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eagle-bom.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ def render(self, gfx):
gfx.stroke()
for circ in self.circs:
gfx.new_sub_path()
log.debug("\tcircle at:" + str(circ[0][0]) + " / " + str(circ[0][1]) + " / " + str(circ[1]))
log.debug("\tcircle at:" + str(circ[0][0]) + " / " +
str(circ[0][1]) + " / " + str(circ[1]))
gfx.arc(circ[0][0], circ[0][1], circ[1], 0, 2*math.pi)
gfx.restore()

Expand Down

0 comments on commit fbd872d

Please sign in to comment.