2011年5月21日土曜日

SoftimageScript Python(list,tuple)

Pythonのシーケンス(配列?)には、リスト、タプルがあり、SIでは両方使われている。

list = [0,2,3]
tuple = (0,2,3)

#Softimage でポリゴンIDを取得してみる
app = Application
oSel = app.Selection(0)
oPolys = oSel.ActivePrimitive.Geometry.Polygons
oSub = oPolys.SubComponent

#ここで取得できるのはタプルのようだ。
taple = oSub.ElementArray
app.Logmessage(str(taple))

#ちなみにSet()は、リスト、タプル、どちらでもイイみたい。

0 件のコメント:

コメントを投稿