| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- # ##########################################################
- # FlatCAM: 2D Post-processing for Manufacturing #
- # File Author: Marius Adrian Stanciu (c) #
- # Date: 8/17/2019 #
- # MIT Licence #
- # ##########################################################
- from tclCommands.TclCommand import TclCommandSignaled
- import collections
- class TclCommandNewGerber(TclCommandSignaled):
- """
- Tcl shell command to subtract polygon from the given Geometry object.
- """
- # array of all command aliases, to be able use old names for backward compatibility (add_poly, add_polygon)
- aliases = ['new_gerber']
- description = '%s %s' % ("--", "Creates a new empty Gerber object.")
- # Dictionary of types from Tcl command, needs to be ordered.
- # For positional arguments
- arg_names = collections.OrderedDict([
- ('name', str)
- ])
- # Dictionary of types from Tcl command, needs to be ordered.
- # For options like -optionname value
- option_types = collections.OrderedDict([
- ])
- # array of mandatory options for current Tcl command: required = {'name','outname'}
- required = []
- # structured help for current command, args needs to be ordered
- help = {
- 'main': "Creates a new empty Gerber object.",
- 'args': collections.OrderedDict([
- ('name', 'New object name.'),
- ]),
- 'examples': ['new_gerber', 'new_gerber my_new_gerber_name']
- }
- def execute(self, args, unnamed_args):
- """
- execute current TCL shell command
- :param args: array of known named arguments and options
- :param unnamed_args: array of other values which were passed into command
- without -somename and we do not have them in known arg_names
- :return: None or exception
- """
- if 'name' in args:
- name = args['name']
- else:
- name = 'new_grb'
- def initialize(grb_obj, app_obj):
- grb_obj.multitool = False
- grb_obj.source_file = []
- grb_obj.multigeo = False
- grb_obj.follow = False
- grb_obj.apertures = {}
- grb_obj.solid_geometry = []
- try:
- grb_obj.options['xmin'] = 0
- grb_obj.options['ymin'] = 0
- grb_obj.options['xmax'] = 0
- grb_obj.options['ymax'] = 0
- except KeyError:
- pass
- self.app.new_object('gerber', name, initialize, plot=False)
|