Commit 73efa050 authored by Whitham D. Reeve II's avatar Whitham D. Reeve II

Convert point object to point tuple.

parent 063d7644
...@@ -159,7 +159,7 @@ def generate_toolpath(model, tool_settings=None, ...@@ -159,7 +159,7 @@ def generate_toolpath(model, tool_settings=None,
warning = "The contour model contains colliding line groups. " + \ warning = "The contour model contains colliding line groups. " + \
"This can cause problems with an engraving offset.\n" + \ "This can cause problems with an engraving offset.\n" + \
"A collision was detected at (%.2f, %.2f, %.2f)." % \ "A collision was detected at (%.2f, %.2f, %.2f)." % \
(result.x, result.y, result.z) (result[0], result[1], result[2])
log.warning(warning) log.warning(warning)
else: else:
# no collisions and no user interruption # no collisions and no user interruption
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment