-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathspb_Crv_selOnSrf.py
More file actions
511 lines (381 loc) · 14.8 KB
/
spb_Crv_selOnSrf.py
File metadata and controls
511 lines (381 loc) · 14.8 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
"""
This script selects curves (wires or all curves (including edges)) and optionally adds curves of naked edges that lie
on selected faced.
"""
#! python 2 Must be on a line less than 32.
from __future__ import absolute_import, division, print_function, unicode_literals
"""
200520-23: Created, starting with another script.
...
220317: Moved main function to a main library module.
230106: Bug fix.
230108: Fixed selection routine.
250917: Added option to filter edges.
TODO:
"""
import Rhino
import Rhino.DocObjects as rd
import Rhino.Geometry as rg
import Rhino.Input as ri
import scriptcontext as sc
from System import Guid
import xBrepFace
import xCurve
class Opts():
keys = []
values = {}
names = {}
riOpts = {}
listValues = {}
stickyKeys = {}
key = 'bUnderlyingSrf'; keys.append(key)
values[key] = False
riOpts[key] = ri.Custom.OptionToggle(values[key], 'No', 'Yes')
stickyKeys[key] = '{}({})'.format(key, __file__)
key = 'fTolerance'; keys.append(key)
values[key] = 1.0 * sc.doc.ModelAbsoluteTolerance
riOpts[key] = ri.Custom.OptionDouble(values[key])
stickyKeys[key] = '{}({})({})'.format(key, __file__, sc.doc.Name)
key = 'bPartiallyOnSrf'; keys.append(key)
values[key] = True
riOpts[key] = ri.Custom.OptionToggle(values[key], 'No', 'Yes')
stickyKeys[key] = '{}({})'.format(key, __file__)
key = 'fSamplingResolution'; keys.append(key)
values[key] = 100.0 * sc.doc.ModelAbsoluteTolerance
riOpts[key] = ri.Custom.OptionDouble(values[key])
stickyKeys[key] = '{}({})({})'.format(key, __file__, sc.doc.Name)
key = 'bIncludeEdges'; keys.append(key)
values[key] = False
riOpts[key] = ri.Custom.OptionToggle(values[key], 'No', 'Yes')
stickyKeys[key] = '{}({})'.format(key, __file__)
key = 'bAddCrvsForEdges'; keys.append(key)
values[key] = True
riOpts[key] = ri.Custom.OptionToggle(values[key], 'No', 'Yes')
stickyKeys[key] = '{}({})'.format(key, __file__)
key = 'bEcho'; keys.append(key)
values[key] = True
riOpts[key] = ri.Custom.OptionToggle(values[key], 'No', 'Yes')
stickyKeys[key] = '{}({})'.format(key, __file__)
key = 'bDebug'; keys.append(key)
values[key] = False
riOpts[key] = ri.Custom.OptionToggle(values[key], 'No', 'Yes')
stickyKeys[key] = '{}({})'.format(key, __file__)
for key in keys:
if key not in names:
names[key] = key[1:]
# Load sticky.
for key in stickyKeys:
if stickyKeys[key] in sc.sticky:
if key in riOpts:
riOpts[key].CurrentValue = values[key] = sc.sticky[stickyKeys[key]]
else:
values[key] = sc.sticky[stickyKeys[key]]
@classmethod
def addOption(cls, go, key):
idxOpt = None
if key in cls.riOpts:
if key[0] == 'b':
idxOpt = go.AddOptionToggle(
cls.names[key], cls.riOpts[key])[0]
elif key[0] == 'f':
idxOpt = go.AddOptionDouble(
cls.names[key], cls.riOpts[key])[0]
elif key[0] == 'i':
idxOpt = go.AddOptionInteger(
englishName=cls.names[key], intValue=cls.riOpts[key])[0]
elif key in cls.listValues:
idxOpt = go.AddOptionList(
englishOptionName=cls.names[key],
listValues=cls.listValues[key],
listCurrentIndex=cls.values[key])
else:
print("{} is not a valid key in Opts.".format(key))
return idxOpt
@classmethod
def setValue(cls, key, idxList=None):
if key == 'fTolerance':
if cls.riOpts[key].CurrentValue < 0.0:
cls.riOpts[key].CurrentValue = cls.riOpts[key].InitialValue
elif cls.riOpts[key].CurrentValue < 1e-6:
cls.riOpts[key].CurrentValue = 1e-6
cls.values[key] = cls.riOpts[key].CurrentValue
sc.sticky[cls.stickyKeys[key]] = cls.values[key]
return
if key in cls.riOpts:
cls.values[key] = cls.riOpts[key].CurrentValue
elif key in cls.listValues:
cls.values[key] = idxList
else:
return
sc.sticky[cls.stickyKeys[key]] = cls.values[key]
def getInput_Faces():
"""
Get Brepfaces with optional input.
"""
go = ri.Custom.GetObject()
go.SetCommandPrompt("Select faces")
go.GeometryFilter = rd.ObjectType.Surface
go.AcceptNumber(True, acceptZero=True)
idxs_Opt = {}
def addOption(key): idxs_Opt[key] = Opts.addOption(go, key)
while True:
go.ClearCommandOptions()
idxs_Opt.clear()
addOption('bUnderlyingSrf')
addOption('fTolerance')
addOption('bPartiallyOnSrf')
addOption('fSamplingResolution')
addOption('bIncludeEdges')
if Opts.values['bIncludeEdges']:
addOption('bAddCrvsForEdges')
addOption('bEcho')
addOption('bDebug')
res = go.GetMultiple(minimumNumber=1, maximumNumber=0)
if res == ri.GetResult.Cancel:
go.Dispose()
return
if res == ri.GetResult.Object:
objrefs = go.Objects()
go.Dispose()
return objrefs
if res == ri.GetResult.Number:
key = 'fTolerance'
Opts.riOpts[key].CurrentValue = go.Number()
Opts.setValue(key)
continue
# An option was selected.
for key in idxs_Opt:
if go.Option().Index == idxs_Opt[key]:
Opts.setValue(key, go.Option().CurrentListOptionIndex)
break
def getInput_Curves(objrefs_Face):
"""
Get curves or edges with optional input.
"""
def getBrep(rhBrep):
if isinstance(rhBrep, rg.Brep):
return None, rhBrep
elif isinstance(rhBrep, rg.GeometryBase):
rdObj = None
rgObj = rhBrep
elif isinstance(rhBrep, rd.ObjRef):
rdObj = rhBrep.Object()
rgObj = rhBrep.Geometry()
elif isinstance(rhBrep, Guid):
rdObj = sc.doc.Objects.FindId(rhBrep) if Rhino.RhinoApp.ExeVersion >= 6 else sc.doc.Objects.Find(rhBrep)
rgObj = rdObj.Geometry
else:
return
if isinstance(rgObj, (rg.Brep, rg.BrepFace)):
return rdObj, rgObj
idxs_EdgesOfFaceToSplit = []
for objref_Face in objrefs_Face:
rdBrep_withFaceToCheck, rgBrep_withFaceToCheck = getBrep(objref_Face)
gBrep_withFaceToCheck = rdBrep_withFaceToCheck.Id
idxs_EdgesOfFaceToSplit.extend(objref_Face.Face().AdjacentEdges())
go = ri.Custom.GetObject()
go.GeometryFilter = rd.ObjectType.Curve
def notEdgeOfFaceToCheck(rdObj, geom, compIdx):
#print rdObj, geom, compIdx
if isinstance(rdObj, rd.BrepObject) and rdObj.Id == gBrep_withFaceToCheck:
if geom.EdgeIndex in idxs_EdgesOfFaceToSplit:
print("An edge of a face to split was picked and will not be used.")
return False
return True
go.SetCustomGeometryFilter(notEdgeOfFaceToCheck)
go.AcceptNothing(True)
go.AcceptNumber(True, acceptZero=True)
go.AlreadySelectedObjectSelect = True
go.DeselectAllBeforePostSelect = False # So objects won't be deselected on repeats of While loop.
go.EnableClearObjectsOnEntry(False)
go.EnableUnselectObjectsOnExit(False)
idxs_Opt = {}
def addOption(key): idxs_Opt[key] = Opts.addOption(go, key)
#print(go.GeometryAttributeFilter)
while True:
bIncludeEdges = Opts.values['bIncludeEdges']
if bIncludeEdges:
go.SetCommandPrompt("Select wires or edges")
go.SetCommandPromptDefault("Enter for all normal wires and brep naked edges")
go.GeometryAttributeFilter = ri.Custom.GeometryAttributeFilter.AcceptAllAttributes
else:
go.SetCommandPrompt("Select wires")
go.SetCommandPromptDefault("Enter for all normal wires")
go.GeometryAttributeFilter = ri.Custom.GeometryAttributeFilter.WireCurve
go.ClearCommandOptions()
idxs_Opt.clear()
addOption('bUnderlyingSrf')
addOption('fTolerance')
addOption('bPartiallyOnSrf')
addOption('fSamplingResolution')
if Opts.values['bIncludeEdges']:
addOption('bAddCrvsForEdges')
addOption('bEcho')
addOption('bDebug')
res = go.GetMultiple(minimumNumber=1, maximumNumber=0)
if res == ri.GetResult.Cancel:
go.Dispose()
return
if res == ri.GetResult.Nothing:
go.Dispose()
return []
if res == ri.GetResult.Object:
objrefs = go.Objects()
go.Dispose()
return objrefs
if res == ri.GetResult.Number:
key = 'fTolerance'
Opts.riOpts[key].CurrentValue = go.Number()
Opts.setValue(key)
continue
# An option was selected.
for key in idxs_Opt:
if go.Option().Index == idxs_Opt[key]:
Opts.setValue(key, go.Option().CurrentListOptionIndex)
break
def _sortFacesByBrep(objrefs):
"""
Parameters:
list(objrefs)
Returns:
list(Brep GUIDs)
list(lists(integers of Face indices) per brep)
"""
gBs = []
rdBs = []
idxs_Fs_perB = []
for o in objrefs:
gB = o.ObjectId
rdB = o.Object()
rgB = o.Brep()
if not rgB.IsValid:
print("Brep {} is invalid. Fix first.".format(gB))
rgB.Dispose()
continue
idx_CompIdx = o.GeometryComponentIndex.Index
if idx_CompIdx == -1:
if gB in gBs:
idxs_Fs_perB[gBs.index(gB)] = range(rgB.Faces.Count)
continue
gBs.append(gB)
rdBs.append(rdB)
idxs_Fs_perB.append(range(rgB.Faces.Count))
else:
rgF = o.Face()
if gB in gBs:
if rgF.FaceIndex in idxs_Fs_perB[gBs.index(gB)]:
continue
idxs_Fs_perB[gBs.index(gB)].append(rgF.FaceIndex)
continue
gBs.append(gB)
rdBs.append(rdB)
idxs_Fs_perB.append([rgF.FaceIndex])
return rdBs, idxs_Fs_perB
def _getDataForAllNormalCrvs(bIncludeEdges=False):
oes = rd.ObjectEnumeratorSettings()
oes.LockedObjects = False
rdOs_Out = []
rgCs_Out = []
if bIncludeEdges:
oes.ObjectTypeFilter = rd.ObjectType.Brep | rd.ObjectType.Curve
for rdO in sc.doc.Objects.GetObjectList(oes):
if isinstance(rdO, rd.BrepObject):
rgB = rdO.BrepGeometry
for rgE in rgB.Edges:
if rgE.Valence == rg.EdgeAdjacency.Naked:
rdOs_Out.append(rdO)
rgCs_Out.append(rgE)
else:
rdOs_Out.append(rdO)
rgCs_Out.append(rdO.CurveGeometry)
else:
oes.ObjectTypeFilter = rd.ObjectType.Curve
for rdO in sc.doc.Objects.GetObjectList(oes):
rdOs_Out.append(rdO)
rgCs_Out.append(rdO.CurveGeometry)
return rdOs_Out, rgCs_Out
def main():
objrefs_Face = getInput_Faces()
if objrefs_Face is None: return
sc.doc.Objects.UnselectAll()
objrefs_CurvesOrEdges = getInput_Curves(objrefs_Face)
if objrefs_CurvesOrEdges is None: return
sc.doc.Objects.UnselectAll()
bUnderlyingSrf = Opts.values['bUnderlyingSrf']
fTolerance = Opts.values['fTolerance']
bPartiallyOnSrf = Opts.values['bPartiallyOnSrf']
fSamplingResolution = Opts.values['fSamplingResolution']
bIncludeEdges = Opts.values['bIncludeEdges']
bAddCrvsForEdges = Opts.values['bAddCrvsForEdges']
bEcho = Opts.values['bEcho']
bDebug = Opts.values['bDebug']
Rhino.RhinoApp.SetCommandPrompt("Working ...")
#rdBs, idxs_Fs_perB = _sortFacesByBrep(objrefs_Face)
#if not rdBs: return
rgSs = []
for objref_F in objrefs_Face:
rgF = objref_F.Face()
rgS = rgF.UnderlyingSurface() if bUnderlyingSrf else rgF
rgSs.append(rgS)
if len(objrefs_CurvesOrEdges) == 0:
rdCsOrBs, rgCs = _getDataForAllNormalCrvs(bIncludeEdges=bIncludeEdges)
if len(rdCsOrBs) == 0:
print("No objects with curves.")
return
else:
rdCsOrBs = []
rgCs = []
for objref in objrefs_CurvesOrEdges:
rdC, rgC = objref.Object(), objref.Curve()
if rdC:
rdCsOrBs.append(rdC)
rgCs.append(rgC)
iCBs_Found = []
for iS, rgS in enumerate(rgSs):
for iCB, (rdC_or_EB, rgC) in enumerate(zip(rdCsOrBs, rgCs)):
if rdC_or_EB.Id in iCBs_Found:
continue
rc = xCurve.filterCurvesOnSurface(
rgC,
rgS,
fSamplingResolution=fSamplingResolution,
fTolerance=fTolerance,
bDebug=bDebug)
if not rc or (len(rc[0]) + len(rc[1]) == 0): continue
cs_AllOnSrf, cs_PartiallyOnSrf = rc
if cs_AllOnSrf:
iCBs_Found.append(iCB)
continue
if bPartiallyOnSrf and cs_PartiallyOnSrf:
iCBs_Found.append(iCB)
continue
if len(iCBs_Found) == 0:
print("No curves found.")
return
sOuts = []
sOuts.append("{} curves found.".format(len(iCBs_Found)))
gCs_Out = []
for iCBs in iCBs_Found:
rdC_or_B = rdCsOrBs[iCBs]
if isinstance(rdC_or_B, rd.CurveObject):
rdC_or_B.Select(rdC_or_B)
elif bAddCrvsForEdges:
gC_Out = sc.doc.Objects.AddCurve(rgCs[iCBs])
if gC_Out != gC_Out.Empty:
gCs_Out.append(gC_Out)
sc.doc.Objects.Select(objectId=gC_Out)
else:
rgE = rgCs[iCBs]
compIdx = rg.ComponentIndex(
type=rg.ComponentIndexType.BrepEdge,
index=rgE.EdgeIndex)
rdC_or_B.SelectSubObject(
componentIndex=compIdx,
select=True,
syncHighlight=True,
persistentSelect=True)
if gCs_Out:
sOuts.append("{} curves added.".format(len(gCs_Out)))
print(" ".join(sOuts))
sc.doc.Views.Redraw()
if __name__ == '__main__': main()