meshpro / pygalmesh

:spider_web: A Python interface to CGAL's meshing tools
GNU General Public License v3.0
580 stars 57 forks source link

Segmentation fault on Union #176

Open antonino-tocco opened 2 years ago

antonino-tocco commented 2 years ago

Hi, I've tried to generate a mesh starting from sphere and merging it. When I run the union a segmentation fault happened. Can you help me?

This is the code that I used:

 for index, row in df.iterrows():
        balls.append(pygalmesh.Ball([row['x'], row['y'], row['z']], row['r']))
u = pygalmesh.Union(balls)
return u
antonino-tocco commented 2 years ago

Sorry I see that the segmentation fault is in generate_mesh at which I give the union as input