当前位置: 首页>>代码示例>>Python>>正文


Python Mesh.move方法代码示例

本文整理汇总了Python中mesh.Mesh.move方法的典型用法代码示例。如果您正苦于以下问题:Python Mesh.move方法的具体用法?Python Mesh.move怎么用?Python Mesh.move使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mesh.Mesh的用法示例。


在下文中一共展示了Mesh.move方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: in

# 需要导入模块: from mesh import Mesh [as 别名]
# 或者: from mesh.Mesh import move [as 别名]
# for segment_id in (654, 665, 1009, 1538, 1620, 1621, 1667, 1668, 1680, 1723, 1936, 1960, 2029, 2086, 2146, 2163, 2184, 2196, 2197, 2215, 2231, 2334, 2376, 2419, 2453, 2613):
#   for x in range(2):
#     for y in range(2):
#       for z in range(2):
#         vertex = api.getSegmentMesh(segmentation_id,x,y,z,segment_id);
#         if vertex  != None:
#           consensus.merge( Mesh(vertex))


# consensus.displayStats()
# consensus.dump('consensus.ctm')


overview = Mesh()


for x in range(21,23):
  for y in range(27,29):
    for z in range(26,28):
      vertex = api.getOverviewMesh(cell_id, 0 , x , y, z);

      if vertex  != None:
        print x,y,z
        mesh = Mesh(vertex)
        mesh.scale(0.5,0.5,0.5)
        mesh.move(x * 128, y*128 , z*128)
        overview.merge( mesh )


overview.displayStats()
overview.dump('overview.ctm')
开发者ID:tartavull,项目名称:mesher,代码行数:33,代码来源:rtm.py


注:本文中的mesh.Mesh.move方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。