UVをリストにする その2
- Metasequoia > Metasequoia Python
- by yuichirou yokomakura
- 2010.09.14 Tuesday 01:22
参考・・・検討、日々考える。
st=[]
for x in range(0,count):
for y in range(0,obj.face[x].numVertex):
st.append(obj.face[x].coord[y])
out(str(obj.face[x].index[y])+":"+str(obj.face[x].coord[y]))
out(str(list(st)))
- -
- -