Skip to content

Commit 101cd3c

Browse files
committed
Correct _dx and _dy
1 parent bcbdeac commit 101cd3c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="vpype-gcode",
9-
version="0.6.1",
9+
version="0.6.2",
1010
description="vpype gcode plugin",
1111
long_description=readme,
1212
long_description_content_type="text/markdown",

vpype_gcode/gwrite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ def gwrite(document: vp.Document, filename: str, profile: str):
135135
dy=dy,
136136
_x=-x,
137137
_y=-y,
138-
_dx=dx,
139-
_dy=dy,
138+
_dx=-dx,
139+
_dy=-dy,
140140
ix=xx,
141141
iy=yy,
142142
idx=idx,

0 commit comments

Comments
 (0)