如何获得导航网格的长度?

时间:2015-07-24 08:36:55

标签: python coordinates blender

我有一个导航网格(如附图所示)。导航网格由曲线和数组修改器组成。由于它有一个数组修饰符,它由一系列平面组成(当我切换到'编辑模式'时,我会看到它)。

我的问题是,我可以迭代导航网格以获得导航网格中每个小平面中心的长度和坐标。如果是,那么请给我一些基于python的例子。提前致谢!

navigation mesh

1 个答案:

答案 0 :(得分:0)

每个小平面都是网格的面,迭代通过对象上的多边形网格数据提供对面部中心坐标的访问。

import bpy, mathutils

plane = bpy.data.objects["Plane"]
previous = None

for poly in plane.data.polygons:
  center = mathutils.Vector(poly.center)
  if previous:
    previous -= center
    #print length and center
    print(previous.length, center)
  previous = center