Questions tagged [pymesh]
19 questions
0
votes
2 answers
How to determine whether a point is inside or outside a 3D model computationally
I have a .obj and .ply file of a 3D model.
What I want to do is read this 3D model file and see if a list of 3D coordinates are either inside or outside the 3D model space.
For example, if the 3D model is a sphere with radius 1, (0,0,0) would be…

hangbin jo
- 13
- 4
0
votes
1 answer
Pymesh boolean union memory leak
I got an error when trying to run pymesh.boolean function inside a loop. I have a loop with pymesh meshes and boolean union operation inside. The error occurs in pymesh/boolean.py in engine.compute_union() and causes a MemoryError: std::bad_alloc
…

Eleores Michael
- 1
- 1
- 1
0
votes
1 answer
remove inside information when merging two 3d objects
Hi i'm currently working on a project where we have to combine multiple 3d objects. So for example place them next to each other and some times they also intersect.
I'm looking for an algorithm/library or any idea that would reduce this new merged…

Fliens
- 19
- 1
- 7
0
votes
1 answer
pymesh collapse_short_edges function makes mesh empty
I want to ask pymesh issue, not sure if it is a bug. when I call
pymesh, info = pm.collapse_short_edges(pymesh, 1e-6)
print("face: ", pymesh.num_faces)
print("vertices: ", pymesh.num_vertices)
pymesh, info1 = pm.collapse_short_edges(pymesh,…

lililipping77
- 17
- 3