def execute(self, context): if len(context.selected_objects)>1: utils.polygonBoolean(context,self.boolean_type) return {'FINISHED'} else: self.report({'ERROR'}, 'at least 2 curves must be selected') return {'CANCELLED'}
def execute(self, context): if len(context.selected_objects) > 1: utils.polygonBoolean(context, self.boolean_type) return {'FINISHED'} else: self.report({'ERROR'}, 'at least 2 curves must be selected') return {'CANCELLED'}
def execute(self, context): utils.polygonBoolean(context, self.boolean_type) return {"FINISHED"}
def execute(self, context): utils.polygonBoolean(context, self.boolean_type) return {'FINISHED'}