Matt Keeter
Matt Keeter
I rewrote most of the UI in the 0.9.1 release, so the code has changed dramatically since that PR. However, the target region is still larger than the visible port:...
The line that matters is ``` /usr/bin/ld: /usr/local/lib/libpython3.7m.a(signalmodule.o): undefined reference to symbol 'pthread_sigmask@@GLIBC_2.2.5' ``` Can you re-run with a verbose build (I think that's `ninja -v`) and see if it's...
The `-v` flag should instruct `ninja` to print more verbose output. For example, on my computer, the line that links `SbGraphTest` is ``` [56/135] : && /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wall -Wextra -g...
I don't have the time to support five+ Windows package managers, especially because I'm developing on a Mac. If folks would like to volunteer to set up CI, I'd be...
Anything in particular that's causing this crash? The traceback is appreciated but not too helpful – all I can get from it is that I'm probably corrupting memory somewhere, somehow...
Okay, from 0.9.0 there's not much I can do – that whole section got rewritten since then. You should try building a more recent version from source (which should be...
Have you tried deleting the build directory then re-compiling? What happens if you try to run the executable directly? (`./app/Antimony.app/Contents/MacOS/Antimony`)
Yes -- `.stl` export is a naive marching tetrahedrons algorithm at the moment (which quickly blows up in size). Pull requests to improve it are welcome; for now, I'd bring...
The experimental feature detection in more recent builds lets you preserve sharp corners and edges while using a much lower voxel resolution. It's not full-on decimation, but could help with...
[Here](https://github.com/mkeeter/antimony/blob/develop/qt/python.pri#L16-L54) is how we attempt to find Boost::Python. As you can see, there are already a bunch of options to work around name variations across different Linux distros. Try running...