Commit c8d5feb1 authored by Whitham D. Reeve II's avatar Whitham D. Reeve II

Remove old commented out code.

parent a66f1fb4
......@@ -38,7 +38,6 @@ class ContourCutter(pycam.PathProcessors.BasePathProcessor):
def append(self, point):
# Sort the points in positive x/y direction - otherwise the
# PolygonExtractor breaks.
#if self.points and (point.sub(self.points[0]).dot(self.__forward) < 0):
if self.points and (pdot(psub(point, self.points[0]), self.__forward) < 0):
self.points.insert(0, point)
else:
......
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