Matt Keeter

Results 211 comments of Matt Keeter

I suspect that the issue is the Python version found [here](https://github.com/mkeeter/antimony/blob/develop/CMakeLists.txt#L11) doesn't match the Boost Python version found [here](https://github.com/mkeeter/antimony/blob/develop/CMakeLists.txt#L17). I don't have a Catalina system to debug on, but maybe...

Definitely possible – check out how I implemented `OP_MOD` in [Ao](https://github.com/mkeeter/ao/search?utf8=%E2%9C%93&q=OP_MOD). I don't have much intuition about the syntax file; pinging @fros1y about it. I'd recommend using `%` and only...

Yeah, I think that it's trying to allocate a huge pixel buffer for the render. The fix will be to only render the section of the model that's actually going...

I can't reproduce this on my latest build (252c3ab23c010e95227aee8ccc022be3dc1f37f5). What branch / commit are you running? Is the `Gtk-WARNING` something that pops up on startup, or is that printed when...

Can you make a debug build so that we get a useful stack trace out? Instead of the normal `qmake` invokation, use `qmake CONFIG+=debug ...`, then run in `gdb` or...

Thanks for the PR! I'm confused as to whether editing `CMakeLists.txt` is actually necessary: when I build on my Mac, I see ``` -- Found Python: /usr/local/Frameworks/Python.framework/Versions/3.8/bin/python3.8 (found suitable version...

Did you install all of the dependencies, including Python?

This is actually z-clipping, not out-of-window clipping: the top of the cylinder is cutting through the "front" of the screen and being clipped. It's confusing, though, because the drawn normals...

(I'll reply on the [OpenSCAD issue](https://github.com/openscad/openscad/issues/1650), since that's the most active discussion)

Can you try adding `-lpthread` to the compiler flags? That's what I found with [30 seconds of Googling](https://github.com/facebook/Surround360/issues/3).