-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathspb_Crv_inflateLinear.py
More file actions
226 lines (168 loc) · 6.39 KB
/
spb_Crv_inflateLinear.py
File metadata and controls
226 lines (168 loc) · 6.39 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
"""
"""
#! python 2 Must be on a line less than 32.
from __future__ import absolute_import, division, print_function, unicode_literals
"""
250311-13: Created.
TODO:
WIP: Only allow linear curves to be selected.
"""
import Rhino
import Rhino.Geometry as rg
import Rhino.Input as ri
import scriptcontext as sc
class Opts:
keys = []
values = {}
names = {}
riOpts = {}
listValues = {}
stickyKeys = {}
key = 'fScaleFactor'; keys.append(key)
values[key] = 2.0
riOpts[key] = ri.Custom.OptionDouble(
initialValue=values[key],
setLowerLimit=True,
limit=Rhino.RhinoMath.SqrtEpsilon
)
stickyKeys[key] = '{}({})'.format(key, __file__)
key = 'fTol_Linear'; keys.append(key)
values[key] = 1e-6 * Rhino.RhinoMath.UnitScale(
Rhino.UnitSystem.Millimeters, sc.doc.ModelUnitSystem)
names[key] = 'LinearTol'
riOpts[key] = ri.Custom.OptionDouble(values[key], setLowerLimit=True,
limit=Rhino.RhinoMath.ZeroTolerance)
stickyKeys[key] = '{}({})({})'.format(key, __file__, sc.doc.ModelUnitSystem)
key = 'bCopy'; keys.append(key)
values[key] = False
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 riOpts[key]:
values[key] = riOpts[key].CurrentValue = sc.sticky[stickyKeys[key]]
else:
# For OptionList.
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 == 'fSearchTol':
if cls.riOpts[key].CurrentValue < 0.0:
cls.riOpts[key].CurrentValue = cls.values[key] = cls.riOpts[key].InitialValue
sc.sticky[cls.stickyKeys[key]] = cls.values[key]
return
sc.sticky[cls.stickyKeys[key]] = cls.values[key] = cls.riOpts[key].CurrentValue
return
if key in cls.riOpts:
sc.sticky[cls.stickyKeys[key]] = cls.values[key] = cls.riOpts[key].CurrentValue
return
if key in cls.listValues:
sc.sticky[cls.stickyKeys[key]] = cls.values[key] = idxList
print("Invalid key?")
def getInput(bDebug=False):
"""
Get linear curves.
"""
go = ri.Custom.GetObject()
go.SetCommandPrompt("Select linear curves")
go.GeometryFilter = Rhino.DocObjects.ObjectType.Curve
#go.GeometryAttributeFilter = (
# ri.Custom.GeometryAttributeFilter.
go.AcceptNumber(True, acceptZero=False)
go.EnableClearObjectsOnEntry(False) # If not set to False, faces will be unselected when result == ri.GetResult.Object
idxs_Opts = {}
def addOption(key): idxs_Opts[key] = Opts.addOption(go, key)
while True:
go.ClearCommandOptions()
idxs_Opts.clear()
addOption('fScaleFactor')
addOption('fTol_Linear')
addOption('bCopy')
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 = 'fScaleFactor'
Opts.riOpts[key].CurrentValue = go.Number()
Opts.setValue(key)
continue
# An option was selected.
for key in idxs_Opts:
if go.Option().Index == idxs_Opts[key]:
Opts.setValue(key, go.Option().CurrentListOptionIndex)
break
def main():
objrefs = getInput()
if objrefs is None: return
fScaleFactor = Opts.values['fScaleFactor']
fTol_Linear = Opts.values['fTol_Linear']
bCopy = Opts.values['bCopy']
bEcho = Opts.values['bEcho']
bDebug = Opts.values['bDebug']
if not bDebug: sc.doc.Views.RedrawEnabled = False
for objref in objrefs:
rgC_In = objref.Curve()
if rgC_In is None:
continue
if not rgC_In.IsLinear(tolerance=fTol_Linear):
continue
if isinstance(rgC_In, rg.BrepEdge):
bIsEdge = True
rgC_In_NotProxy = rgC_In.DuplicateCurve()
else:
bIsEdge = False
rgC_In_NotProxy = rgC_In
if isinstance(rgC_In_NotProxy, rg.LineCurve):
line = rgC_In_NotProxy.Line
else:
line = rg.Line(rgC_In.PointAtStart, rgC_In.PointAtEnd)
line.Extend(
startLength=line.Length/2.0,
endLength=line.Length/2.0)
#rdO_In = objref.Object()
if bCopy or bIsEdge:
sc.doc.Objects.AddLine(line)#, attributes=rdO_In.Attributes)
else:
sc.doc.Objects.Replace(objref, line)
sc.doc.Views.RedrawEnabled = True
if __name__ == '__main__': main()