【发布时间】:2014-02-28 08:30:03
【问题描述】:
我有一个描述封闭表面网格的点云。我想从中创建一个体积网格:因此我必须在这个“表面点云”内附加一些点。到目前为止,我使用的是一种谢尔宾斯基算法:
1) begin with middlepoint of all points
2) random choose one of the surface points
3) create new point at the half of the connection line between point (1) and (2)
4) start again at (1) but take the new point (3) as first point
问题:当我对所有点进行三角剖分时,许多角度都太大了(ANSYS 无法使用此数据集)。 有谁知道在表面网格内创建点的好算法,这样三角剖分后的角度不会太大?
【问题讨论】:
标签: python algorithm volume mesh