diff options
-rw-r--r-- | gerbonara/rs274x.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gerbonara/rs274x.py b/gerbonara/rs274x.py index db74780..1559740 100644 --- a/gerbonara/rs274x.py +++ b/gerbonara/rs274x.py @@ -572,9 +572,9 @@ class GraphicsState: def interpolation_mode_statement(self): return { - InterpMode.LINEAR: 'G01', - InterpMode.CIRCULAR_CW: 'G02', - InterpMode.CIRCULAR_CCW: 'G03'}[self.interpolation_mode] + InterpMode.LINEAR: 'G01*', + InterpMode.CIRCULAR_CW: 'G02*', + InterpMode.CIRCULAR_CCW: 'G03*'}[self.interpolation_mode] class GerberParser: |