rob-rb

Results 7 comments of rob-rb

hi nico, I write you again about non-manifold problems in flip_until_delaunay. You have rewritten the code once to try to avoid such problems. Since I still have such problems, maybe...

hi nico, This comment above is kind of obsolete, I just could remove those triangles from the Mesh.

```python import meshplex mesh = meshplex._reader.read(f"./1_500_contour.obj") def boundary_stats(): print("b_points", mesh.points[mesh.is_boundary_point].shape) volumes = mesh.cell_volumes[mesh.is_boundary_cell] print("b_cells", volumes.shape) edges = mesh.edges["points"] print("b_edges", edges[mesh.is_boundary_edge].shape) def callback(arg): return mesh.cell_volumes[mesh.is_boundary_cell] < 1e-5 boundary_stats() while True: res...

uncommenting line 24 -> no error

Actually I need a remove triangle method filling up the holes. Something like this: ```python import meshplex import numpy as np def join_short_edges(mesh, edge_length): edges = mesh.edges["points"] points = mesh.points...

I was able to use cmake on windows in a shell with admin-rights.

I introduced some gc.collect's but no changes I provide as well the output of this script below: from manifold3d import * import random import gc def get_boolean_difference(n): sph = Manifold.sphere(1.5,...