pygalmesh icon indicating copy to clipboard operation
pygalmesh copied to clipboard

:spider_web: A Python interface to CGAL's meshing tools

Results 31 pygalmesh issues
Sort by recently updated
recently updated
newest added

Hi, I am new to ```pygalmesh```, I have a quick question about converting volume to mesh. Can this library convert nrrd CT volume file to the surface? I have a...

I cannot install it on windows due to it does not find eigen

I am using the 'generate_from_array' function to mesh a numpy array containing labels. Everything works correctly, but I am unable to extract the labels for each of the generated tetrahedra....

The following minimal code example: ```python import pygalmesh cylinder = pygalmesh.Cylinder(-1, 1, 0.7, 0.1) mesh = pygalmesh.generate_mesh(cylinder) ``` fails with: ``` File "/home/username/.local/lib/python3.9/site-packages/pygalmesh/main.py", line 107, in generate_mesh _generate_mesh( RuntimeError: CGAL...

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...

Hi, Nico Schlömer, Am I doing something wrong? I just clone the latest pygalmesh, but I do not pass all the unit tests, here is a screenshot of the output...

hi, is it possible to do isotropic remeshing as implemented in `CGAL::Polygon_mesh_processing::isotropic_remeshing ` ?

I'm thinking it would help with intuitive use of domains if domain combinations could also be implemented as operator overloads, e.g. support the following in `DomainBase`: operator | function |...

Hi, I am trying to create a couple rectangular based pyramids and then find the resulting mesh after using pygalmesh.Intersection. - Is there a way to create a rectangular based...