Michael Dawson-Haggerty

Results 107 comments of Michael Dawson-Haggerty

Hey, is this still happening? Checking on my local machine it looks OK: ``` n [4]: m = trimesh.load('/home/mikedh/Downloads/WaterBottle.glb') primitive has no mode! trying GL_TRIANGLES? In [5]: m Out[5]: In...

Hey, I checked a minimal install on Python 3.10, 3.7, 3.5, 2.7 and this issue didn't occur in a simple example, does anyone have a reproducible docker snippet or full...

I think I got all of these, and trimesh tests are passing with `pip install shapely==2.0b2`

Yeah that should probably be checked, PR's welcome!

Neat model! It looks like a lot of that is bad support for alpha in trimesh, I did notice when you scale the sclera down it does line up with...

Hey, I think you probably want to extrude the outline if it's planar: ``` import trimesh if __name__ == "__main__": # generate a not-watertight single plane mesh # move it...

`mesh.outline()` could be what you're looking for.

Yeah definitely a wart at best. My only put is that it seems like it is probably pretty expensive and potentially unreliable to do a `mesh_a.contains(mesh_b)` query? The points-contains function...

Hey, yeah does it work if you disable vertex merging? Is the "voxel" input a mesh? You probably need to pass `Trimesh(..., process=False)` wherever the mesh is being created?

Hey, if the triangulation was well constructed it should be watertight, maybe try `triangle`? ``` # pip install triangle # triangle has a non-standard open source license but is free...