File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 55
66setup (
77 name = "vpype-gcode" ,
8- version = "0.9.2 " ,
8+ version = "0.10.0 " ,
99 description = "vpype gcode plugin" ,
1010 long_description = readme ,
1111 long_description_content_type = "text/markdown" ,
Original file line number Diff line number Diff line change @@ -5,20 +5,26 @@ segment_first = "G00 X{x:.4f} Y{y:.4f}\n"
55segment = " G01 X{x:.4f} Y{y:.4f}\n "
66document_end = " M2\n "
77unit = " in"
8+ invert_y = " True"
9+ info = " This gcode profile is correctly inverted across the y-axis"
810
911[gwrite .gcodemm ]
1012document_start = " G21\n G17\n G90\n "
1113segment_first = " G00 X{x:.4f} Y{y:.4f}\n "
1214segment = " G01 X{x:.4f} Y{y:.4f}\n "
1315document_end = " M2\n "
1416unit = " mm"
17+ invert_y = " True"
18+ info = " This gcode profile is correctly inverted across the y-axis"
1519
1620[gwrite .gcode_relative ]
1721document_start = " G20\n G17\n G91\n "
1822segment_first = " G00 X{dx:.4f} Y{dy:.4f}\n "
1923segment = " G01 X{dx:.4f} Y{dy:.4f}\n "
2024document_end = " M2\n "
2125unit = " in"
26+ invert_y = " True"
27+ info = " This gcode profile is correctly inverted across the y-axis"
2228
2329[gwrite .csv ]
2430document_start = " #Operation, X-value, Y-value\n "
You can’t perform that action at this time.
0 commit comments