Rick van Hattem

Results 300 comments of Rick van Hattem

This issue slipped my mind unfortunately. It seems that there are several things wrong with your code however. I suppose at line 3 and line 20 there should be strings....

My assumption is that Trimesh says it's watertight because it sees that 2 triangles are close enough to each other to be "watertight". In reality, in STL files you would...

> > making a mesh watertight doesn't appear that difficult to do, but it could still take some effort to write a fast and efficient algorithm for it > >...

I've taken a look at it and it wouldn't be impossible to add, but quite a bit of work. Are you looking for simply reading/modifying the files, or saving/generating them...

Sorry about this extremely slow response... for some reason it seems that the deploy script I'm using has a bug and creates the tag before committing. I'm not sure what's...

This library does not provide any functionality for that, but you could do that :) Here's a useful discussion on stackoverflow: https://stackoverflow.com/questions/12968478/how-to-detect-a-hole-in-the-triangular-mesh

I've never really published anything about it but I suppose this should do the trick: ``` @book{numpy_stl, title={Numpy STL} author={van Hattem, Rick}, year={2016}, publisher={Wolph}, abstract={Simple library to make working with...

Are doing a `pip install numpy-stl` it should be a command that you can run just like the `pip` command. Specifically, this part of the `setup.py` script takes care of...

It depends on the code you used to render this. This library only handles the storage of t he 3D objects, it does not do any rendering itself

Since numpy arrays have a fixed size, the only way you can delete them is by creating a new array (or a view). One option would be to create a...