forked from hlorus/CAD_Sketcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_geometric_constraints.py
134 lines (91 loc) · 3.37 KB
/
add_geometric_constraints.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import logging
from bpy.types import Operator, Context
from bpy.props import FloatProperty
from ..model.utilities import update_pointers
from ..solver import solve_system
from ..declarations import Operators
from ..stateful_operator.utilities.register import register_stateops_factory
from .base_constraint import GenericConstraintOp
logger = logging.getLogger(__name__)
class VIEW3D_OT_slvs_add_coincident(Operator, GenericConstraintOp):
"""Add a coincident constraint"""
bl_idname = Operators.AddCoincident
bl_label = "Coincident"
bl_options = {"UNDO", "REGISTER"}
type = "COINCIDENT"
def main(self, context: Context):
p1, p2 = self.entity1, self.entity2
if all([e.is_point() for e in (p1, p2)]):
# Implicitly merge points
update_pointers(context.scene, p1.slvs_index, p2.slvs_index)
context.scene.sketcher.entities.remove(p1.slvs_index)
solve_system(context, context.scene.sketcher.active_sketch)
return True
return super().main(context)
class VIEW3D_OT_slvs_add_equal(Operator, GenericConstraintOp):
"""Add an equal constraint"""
bl_idname = Operators.AddEqual
bl_label = "Equal"
bl_options = {"UNDO", "REGISTER"}
type = "EQUAL"
class VIEW3D_OT_slvs_add_vertical(Operator, GenericConstraintOp):
"""Add a vertical constraint"""
bl_idname = Operators.AddVertical
bl_label = "Vertical"
bl_options = {"UNDO", "REGISTER"}
type = "VERTICAL"
class VIEW3D_OT_slvs_add_horizontal(Operator, GenericConstraintOp):
"""Add a horizontal constraint"""
bl_idname = Operators.AddHorizontal
bl_label = "Horizontal"
bl_options = {"UNDO", "REGISTER"}
type = "HORIZONTAL"
class VIEW3D_OT_slvs_add_parallel(Operator, GenericConstraintOp):
"""Add a parallel constraint"""
bl_idname = Operators.AddParallel
bl_label = "Parallel"
bl_options = {"UNDO", "REGISTER"}
type = "PARALLEL"
class VIEW3D_OT_slvs_add_perpendicular(Operator, GenericConstraintOp):
"""Add a perpendicular constraint"""
bl_idname = Operators.AddPerpendicular
bl_label = "Perpendicular"
bl_options = {"UNDO", "REGISTER"}
type = "PERPENDICULAR"
class VIEW3D_OT_slvs_add_tangent(Operator, GenericConstraintOp):
"""Add a tagent constraint"""
bl_idname = Operators.AddTangent
bl_label = "Tangent"
bl_options = {"UNDO", "REGISTER"}
type = "TANGENT"
class VIEW3D_OT_slvs_add_midpoint(Operator, GenericConstraintOp):
"""Add a midpoint constraint"""
bl_idname = Operators.AddMidPoint
bl_label = "Midpoint"
bl_options = {"UNDO", "REGISTER"}
type = "MIDPOINT"
class VIEW3D_OT_slvs_add_ratio(Operator, GenericConstraintOp):
"""Add a ratio constraint"""
bl_idname = Operators.AddRatio
bl_label = "Ratio"
bl_options = {"UNDO", "REGISTER"}
value: FloatProperty(
name="Ratio",
subtype="UNSIGNED",
options={"SKIP_SAVE"},
min=0.0,
precision=5,
)
type = "RATIO"
constraint_operators = (
VIEW3D_OT_slvs_add_coincident,
VIEW3D_OT_slvs_add_equal,
VIEW3D_OT_slvs_add_vertical,
VIEW3D_OT_slvs_add_horizontal,
VIEW3D_OT_slvs_add_parallel,
VIEW3D_OT_slvs_add_perpendicular,
VIEW3D_OT_slvs_add_tangent,
VIEW3D_OT_slvs_add_midpoint,
VIEW3D_OT_slvs_add_ratio,
)
register, unregister = register_stateops_factory(constraint_operators)