You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gcodeplot.inx
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,8 +38,10 @@
38
38
39
39
</page>
40
40
<pagename="fitting"_gui-text="Fitting and Extracting">
41
+
<labelappearance="header">Fitting</label>
42
+
41
43
<paramname="scale"type="enum"_gui-text="Scaling mode:"_gui-description="Method for scaling to print area (Default: none; should be 'none' if tool-offset option is set in cutter tab)">
42
-
<itemvalue="n">none (needed if tool offset>0)</item>
44
+
<itemvalue="n">none (needed if tool offset>0)</item>
43
45
<itemvalue="f">fit</item>
44
46
<itemvalue="d">down-only</item>
45
47
</param>
@@ -55,12 +57,16 @@
55
57
<itemvalue="center">center</item>
56
58
<itemvalue="top">right</item>
57
59
</param>
58
-
60
+
<separator />
61
+
<labelappearance="header">Extracting</label>
62
+
<paramname="ignore-hidden"type="bool"gui-text="Ignore hidden elements"_gui-description="If checked, hidden layers, groups and elements will be discarded"></param>
63
+
<paramname="ignore-locked"type="bool"gui-text="Ignore locked elements"_gui-description="If checked, locked layers, groups and elements will be discarded"></param>
59
64
<hbox>
60
65
<paramname="boolean-extract-color"type="bool"gui-text="Extract only one color from drawing"_gui-description="Uncheck to include all colors; otherwise, choose the color to extract."></param>
61
66
<spacersize="expand"/>
62
67
<paramname="extract-color"type="color"gui-text=""appearance="colorbutton"_gui-description="The color to extract. Alpha values are discarded"></param>
63
68
</hbox>
69
+
64
70
</page>
65
71
<pagename="drawing"_gui-text="Drawing Settings">
66
72
<paramname="shading-threshold"type="float"min="0"max="1"precision="2"_gui-text="Shading threshold:"_gui-description="Shade whenever the shade is below this value, where 0=black and 1=white. To turn off shading, set to 0. (Default: 1, shade everything other than white).">1</param>
argparser.add_argument('-R', '--extract-color', metavar='C', default=None, type=parser.rgbFromColor, help='extract color (specified in SVG format , e.g., rgb(1,0,0) or #ff0000 or red)')
806
817
argparser.add_argument('-L', '--stroke-all', action=argparse.BooleanOptionalAction, default=False, help='stroke even regions specified by SVG to have no stroke')
807
818
argparser.add_argument('-e', '--direction', metavar='ANGLE', default=None, type=lambdavalue: Noneifvalue.lower() =='none'elsefloat(value), help='for slanted pens: prefer to draw in given direction (degrees; 0=positive x, 90=positive y, none=no preferred direction) [default none]')
argparser.add_argument('-o', '--optimization-time', metavar='T', default=60, type=int, help='max time to spend optimizing (seconds; set to 0 to turn off optimization) [default 60]')
810
824
argparser.add_argument('-d', '--sort', action=argparse.BooleanOptionalAction, default=False, help='sort paths from inside to outside for cutting [default off]')
0 commit comments