Wesley Smith

Results 12 comments of Wesley Smith

Can you give me a test case? I'm happy to merge this when any know issues are fixed.

Thanks. I'll take a look and fix. It has been a while since I used Lua.

@otmanon It's not the clearest API, but the way ImGui is designed you use the following pattern: ``` LEFT_ARROW = imgui.GetKeyIndex(imgui.ImGuiKey_LeftArrow) def cb(): if imgui.IsKeyPressed(LEFT_ARROW): print("LEFT") pscope.set_user_callback(cb) ``` ImGui has...

> My main challenge is that managing cpp + unit tests + docs + python bindings mean that even simple changes can easily take 2+ hours This makes a lot...

Oh, cool. I have bindings for a large fraction of ImGui. I'll take a look at what you've done and see about making PRs there/

Well, I was starting with the most basic maps when using this lib to get a feel for it. I would use it. You need it in order to clean...

FYI, the fix: https://github.com/flexible-collision-library/fcl/pull/550

You're right. Presumably [this](https://github.com/weshoke/efficient-marching-cubes/blob/master/src/MarchingCubes.cpp#L129) should be changed as well.

@nmwsharp Any thoughts on this one? I have a corresponding PR in the Python bindings repo to updating the imgui Python bindings.