diff options
| author | Arnout Engelen <arnouten@bzzt.net> | 2017-12-28 15:37:33 +0000 |
|---|---|---|
| committer | Arnout Engelen <arnouten@bzzt.net> | 2017-12-30 17:58:50 +0000 |
| commit | dd3b6aa099175e2244e1e04dde45bf21a966425e (patch) | |
| tree | 5064a869ecf5270f09ad216dd0328dd9c98ef122 /share/extensions/plotter.py | |
| parent | Stop using deprecated gtk_adjustment_value_changed (diff) | |
| download | inkscape-dd3b6aa099175e2244e1e04dde45bf21a966425e.tar.gz inkscape-dd3b6aa099175e2244e1e04dde45bf21a966425e.zip | |
Add option to convert objects to paths before plotting
Added an option to extensions->export->plot and the HPGL export feature to
nondestructively convert objects to paths before conversion.
Diffstat (limited to 'share/extensions/plotter.py')
| -rwxr-xr-x | share/extensions/plotter.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/share/extensions/plotter.py b/share/extensions/plotter.py index 1d8e8f79e..43d70eebc 100755 --- a/share/extensions/plotter.py +++ b/share/extensions/plotter.py @@ -56,6 +56,7 @@ class Plot(inkex.Effect): self.OptionParser.add_option('--flat', action='store', type='float', dest='flat', default=1.2, help='Curve flatness') self.OptionParser.add_option('--autoAlign', action='store', type='inkbool', dest='autoAlign', default='TRUE', help='Auto align') self.OptionParser.add_option('--debug', action='store', type='inkbool', dest='debug', default='FALSE', help='Show debug information') + self.OptionParser.add_option('--convertObjects', action='store', type='inkbool', dest='convertObjects', default='TRUE', help='Convert objects to paths') def effect(self): # get hpgl data |
