如何使用这些点创建网格?

问题描述 投票:0回答:0

我有一些包围表面的点,我正在尝试使用 pygmsh 在它们之间创建网格。 更具体地说,这些点模拟了一艘船(从上面看)。

我尝试执行以下操作:

import pygmsh
with pygmsh.geo.Geometry() as geom:
    geom.add_polygon(
        [
           
        #Here I Included the list of points
            
        ],
        mesh_size=0.1,
    )
    mesh = geom.generate_mesh()

内核没有编译就继续运行。 任何帮助表示赞赏

python mesh
© www.soinside.com 2019 - 2024. All rights reserved.