Ejemplo n.º 1
0
	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'}
Ejemplo n.º 2
0
 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'}
Ejemplo n.º 3
0
 def execute(self, context):
     utils.polygonBoolean(context, self.boolean_type)
     return {"FINISHED"}
Ejemplo n.º 4
0
 def execute(self, context):
     utils.polygonBoolean(context, self.boolean_type)
     return {'FINISHED'}