<< 頂点法線 vertex normalを求める 戻る UVをリストにする その2 >>

UV座標のリストを表示する

coord UV座標のリスト
メタセコイアpythonを使って求める
これがst座標になるかはまた検証です。
勉強します。

doc=MQSystem.getDocument()
out=MQSystem.println

obj=doc.object[doc.currentObjectIndex]
out(str(obj.name))

count=obj.numFace
out("面の数:"+str(count))

for face in obj.face:
faceid=list(face.index)

for x in range(0,count):
for y in range(0,obj.face[x].numVertex):
out(str(obj.face[x].index[y])+":"+str(obj.face[x].coord[y]))


出力結果
obj1
面の数:4
1:[0.9957, 0.4946]
3:[0.9957, 0.9754]
2:[0.5149, 0.9754]
1:[0.9930, 0.4892]
2:[0.5122, 0.9700]
0:[0.5122, 0.4892]
4:[0.5203, 0.0004]
5:[1.0011, 0.0004]
1:[1.0011, 0.4811]
4:[0.5203, 0.0058]
1:[1.0011, 0.4865]
0:[0.5203, 0.4865]
  • -
  • -

<< 頂点法線 vertex normalを求める 戻る UVをリストにする その2 >>