本文整理汇总了Python中mathutils.Matrix.to_tuple方法的典型用法代码示例。如果您正苦于以下问题:Python Matrix.to_tuple方法的具体用法?Python Matrix.to_tuple怎么用?Python Matrix.to_tuple使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mathutils.Matrix
的用法示例。
在下文中一共展示了Matrix.to_tuple方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_tube
# 需要导入模块: from mathutils import Matrix [as 别名]
# 或者: from mathutils.Matrix import to_tuple [as 别名]
def make_tube(self, mats, verts):
edges_out = []
verts_out = []
faces_out = []
vID = 0
nring = len(verts[0])
# end face
faces_out.append(list(range(nring)))
for i,m in enumerate(mats):
for j,v in enumerate(verts[0]):
vout = Matrix(m) * Vector(v)
verts_out.append(vout.to_tuple())
vID = j + i*nring
# rings
if j != 0:
edges_out.append([vID, vID - 1])
else:
edges_out.append([vID, vID + nring-1])
# lines
if i != 0:
edges_out.append([vID, vID - nring])
# faces
if j != 0:
faces_out.append([vID, vID - nring, vID - nring - 1, vID-1,])
else:
faces_out.append([vID, vID - nring, vID-1, vID + nring-1])
# end face
# reversing list fixes face normal direction keeps mesh manifold
f = list(range(vID, vID-nring, -1))
faces_out.append(f)
return verts_out, edges_out, faces_out