forked from hlorus/CAD_Sketcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselect.py
50 lines (40 loc) · 1.29 KB
/
select.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
import logging
from bpy.props import EnumProperty
from bpy.types import Context
from .. import global_data
from ..utilities.data_handling import entities_3d
logger = logging.getLogger(__name__)
def select_all(context: Context):
sketch = context.scene.sketcher.active_sketch
if sketch:
logger.debug(
f"Selecting all sketcher entities in sketch : {sketch.name} (slvs_index: {sketch.slvs_index})"
)
generator = sketch.sketch_entities(context)
else:
logger.debug(f"Selecting all sketcher entities")
generator = entities_3d(context)
for e in generator:
if e.selected:
continue
if not e.is_selectable(context):
continue
e.selected = True
def deselect_all(context: Context):
logger.debug("Deselecting all sketcher entities")
global_data.selected.clear()
mode_property = EnumProperty(
name="Mode",
items=[
("SET", "Set", "Set new selection", "SELECT_SET", 1),
("EXTEND", "Extend", "Add to existing selection", "SELECT_EXTEND", 2),
(
"SUBTRACT",
"Subtract",
"Subtract from existing selection",
"SELECT_SUBTRACT",
3,
),
("TOGGLE", "Toggle", "Toggle selection", "RADIOBUT_OFF", 4),
],
)