summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gerber/rs274x.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/gerber/rs274x.py b/gerber/rs274x.py
index c01f027..f7be44d 100644
--- a/gerber/rs274x.py
+++ b/gerber/rs274x.py
@@ -386,12 +386,13 @@ class GerberParser(object):
def _evaluate_coord(self, stmt):
x = self.x if stmt.x is None else stmt.x
y = self.y if stmt.y is None else stmt.y
+
if stmt.function in ("G01", "G1"):
self.interpolation = 'linear'
elif stmt.function in ('G02', 'G2', 'G03', 'G3'):
self.interpolation = 'arc'
- self.direction = ('clockwise' if stmt.function in ('G02', 'G2')
- else 'counterclockwise')
+ self.direction = ('clockwise' if stmt.function in ('G02', 'G2') else 'counterclockwise')
+
if stmt.op == "D01":
if self.region_mode == 'on':
if self.current_region is None: