Commit 9c306788 authored by sumpfralle's avatar sumpfralle

fixed code due to recent changes


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@563 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent cfa6bfb7
......@@ -69,7 +69,7 @@ class SimpleGCodeExporter:
if (self._last_path_point is None) \
or (self._max_skip_safety_distance is None):
return False
distance = new_point.sub(self._last_path_point).norm()
distance = new_point.sub(self._last_path_point).norm
return distance <= self._max_skip_safety_distance
def add_comment(self, comment):
......
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