Rick van Hattem
Rick van Hattem
```python from stl import mesh your_mesh = mesh.Mesh.from_file('tests/stl_binary/HalfDonut.stl') # Rotate 90 degrees over the Y axis your_mesh.rotate([0.0, 0.5, 0.0], math.radians(90)) z_height = your_mesh.z.max() - your_mesh.z.min() ```
If you clone the Github repository you get all the tests. Specifically, they are over here: https://github.com/WoLpH/numpy-stl/tree/develop/tests To run the tests you can either use `tox` or you can call...
Not sure if it's something you're interested in but it's related :) I've written a much faster array loader for psycopg 3 that can immediately load the data into `numpy`:...
It's not working for me using "Plugin" sensing either. Using the Home Assistant plugin.
Not just on fish, it's very slow with zsh as well. It takes 100ms for every line you type in your shell...
Personally I would strongly vote for PyPI inclusion as it makes installation on Linux, *BSD and OS X a lot easier. I am willing to maintain the PyPI package if...
I've fixed it so the base conversion (hex, octal and binary) conversions happen before the unit parsing happens. So this should always work :)
That would be useful indeed. As for the order, that's decided by Alfred and learns from your behavior. If you often select a type of result it will put that...
The latest release includes an improvement from @aaronkollasch that limits the number of fractional options. It's still far from perfect but it should be a lot better already :) With...
Unfortunately with the current direction if distutils and setuptools it seems that any building through the `setup.py` has become highly discouraged and largely broken... If I'm going to update and...