forked from hlorus/CAD_Sketcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd_rectangle.py
128 lines (101 loc) · 4.13 KB
/
add_rectangle.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
import logging
from bpy.types import Operator, Context
from ..model.types import SlvsPoint2D
from ..declarations import Operators
from ..stateful_operator.utilities.register import register_stateops_factory
from ..stateful_operator.state import state_from_args
from ..solver import solve_system
from .base_2d import Operator2d
from .constants import types_point_2d
from .utilities import ignore_hover
logger = logging.getLogger(__name__)
class View3D_OT_slvs_add_rectangle(Operator, Operator2d):
"""Add a rectangle to the active sketch"""
bl_idname = Operators.AddRectangle
bl_label = "Add Rectangle"
bl_options = {"REGISTER", "UNDO"}
rect_state1_doc = ("Startpoint", "Pick or place starting point.")
rect_state2_doc = ("Endpoint", "Pick or place ending point.")
states = (
state_from_args(
rect_state1_doc[0],
description=rect_state1_doc[1],
pointer="p1",
types=types_point_2d,
),
state_from_args(
rect_state2_doc[0],
description=rect_state2_doc[1],
pointer="p2",
types=types_point_2d,
interactive=True,
create_element="create_point",
),
)
def main(self, context: Context):
sketch = self.sketch
sse = context.scene.sketcher.entities
p1, p2 = self.get_point(context, 0), self.get_point(context, 1)
p_lb, p_rt = p1, p2
p_rb = sse.add_point_2d((p_rt.co.x, p_lb.co.y), sketch)
p_lt = sse.add_point_2d((p_lb.co.x, p_rt.co.y), sketch)
if context.scene.sketcher.use_construction:
p_lb.construction = True
p_rb.construction = True
p_rt.construction = True
p_lt.construction = True
lines = []
points = (p_lb, p_rb, p_rt, p_lt)
for i, start in enumerate(points):
end = points[i + 1 if i < len(points) - 1 else 0]
line = sse.add_line_2d(start, end, sketch)
if context.scene.sketcher.use_construction:
line.construction = True
lines.append(line)
self.lines = lines
for e in (*points, *lines):
ignore_hover(e)
return True
def fini(self, context: Context, succeede: bool):
if hasattr(self, "lines") and self.lines:
ssc = context.scene.sketcher.constraints
for i, line in enumerate(self.lines):
func = ssc.add_horizontal if (i % 2) == 0 else ssc.add_vertical
func(line, sketch=self.sketch)
data = self._state_data.get(1)
if data.get("is_numeric_edit", False):
input = data.get("numeric_input")
# constrain distance
startpoint = getattr(self, self.get_states()[0].pointer)
for val, line in zip(input, (self.lines[1], self.lines[2])):
if val is None:
continue
ssc.add_distance(
startpoint,
line,
sketch=self.sketch,
init=True,
)
if succeede:
if self.has_coincident:
solve_system(context, sketch=self.sketch)
def create_point(self, context: Context, values, state, state_data):
value = values[0]
if state_data.get("is_numeric_edit", False):
data = self._state_data.get(1)
input = data.get("numeric_input")
# use relative coordinates
orig = getattr(self, self.get_states()[0].pointer).co
for i, val in enumerate(input):
if val is None:
continue
value[i] = orig[i] + val
sse = context.scene.sketcher.entities
point = sse.add_point_2d(value, self.sketch)
ignore_hover(point)
if context.scene.sketcher.use_construction:
point.construction = True
self.add_coincident(context, point, state, state_data)
state_data["type"] = SlvsPoint2D
return point.slvs_index
register, unregister = register_stateops_factory((View3D_OT_slvs_add_rectangle,))