forked from hlorus/CAD_Sketcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_constraint.py
51 lines (35 loc) · 1.49 KB
/
delete_constraint.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import logging
from bpy.utils import register_classes_factory
from bpy.props import IntProperty, StringProperty
from bpy.types import Operator, Context
from ..utilities.view import refresh
from ..solver import solve_system
from ..declarations import Operators
from ..utilities.highlighting import HighlightElement
logger = logging.getLogger(__name__)
class View3D_OT_slvs_delete_constraint(Operator, HighlightElement):
"""Delete constraint by type and index"""
bl_idname = Operators.DeleteConstraint
bl_label = "Delete Constraint"
bl_description = "Delete Constraint"
bl_options = {"UNDO"}
type: StringProperty(name="Type")
index: IntProperty(default=-1)
@classmethod
def description(cls, context, properties):
cls.handle_highlight_hover(context, properties)
if properties.type:
return "Delete: " + properties.type.capitalize()
return ""
def execute(self, context: Context):
constraints = context.scene.sketcher.constraints
# NOTE: It's not really necessary to first get the
# constraint from its index before deleting
constr = constraints.get_from_type_index(self.type, self.index)
logger.debug("Delete: {}".format(constr))
constraints.remove(constr)
sketch = context.scene.sketcher.active_sketch
solve_system(context, sketch=sketch)
refresh(context)
return {"FINISHED"}
register, unregister = register_classes_factory((View3D_OT_slvs_delete_constraint,))