imgui_bundle
imgui_bundle copied to clipboard
Dear ImGui Bundle: easily create ImGui applications in Python and C++. Batteries included!

Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.17.0 to 2.18.0. Release notes Sourced from pypa/cibuildwheel's releases. v2.18.0 ✨ Adds CPython 3.13 support, under the prerelease flag CIBW_PRERELEASE_PYTHONS. This version of cibuildwheel uses 3.13.0b1. Free-threading...
Hi again! I looked at the example for [exporting the results](https://github.com/ocornut/imgui_test_engine/wiki/Exporting-Results) and wanted to reproduce the same behavior in python with the following line: `imgui.test_engine.get_io(hello_imgui.get_imgui_test_engine()).export_results_filename = "output_file.xml"` However, it does...
I noticed what might be a bug on the wrapping of the `BeginSubplots` function: From implot.h: ```C++ IMPLOT_API bool BeginSubplots(const char* title_id, int rows, int cols, const ImVec2& size, ImPlotSubplotFlags...
plotting python numpy data that is noncontiguous and using implot stride option don't seem to work
I noticed two potential issues: (or am just missing things) 1) It appears that the wrapping of the implot functions that take numpy arrays expect contiguous data. Would it be...
env: - Python `imgui-bundle` 1.3.0 https://github.com/pthom/imgui_bundle/blob/541ed1a1a25437cd196e53926676ff0c75174fff/bindings/imgui_bundle/imgui/__init__.pyi#L9451-L9460 ```cpp struct ImFontConfig { // ... ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for...
Hello, Your work is amazing! is there an imgui-bundle version compatible with Python=3.9.18?
For an app code that uses a separate Sampler scheme instead of texture-sampler bound scheme, the following code is needed as in ImGui source. Please refer to glBindSampler doc too....
Hello! I am tinkering with the [recent example for glfw](https://github.com/pthom/imgui_bundle/blob/v1.1.0/bindings/imgui_bundle/python_backends/examples/example_python_backend_glfw3.py) and trying to integrate the test_engine by following the instructions [here](https://github.com/ocornut/imgui_test_engine/wiki/Setting-Up#initialization) and [here](https://github.com/pthom/imgui_bundle#test--automation-with-imgui-test-engine). I was trying to click the button...
I was looking to play with ImSequencer in python and noticed there were limitations and earlier issues. There is a more recent imgui sequencer project available -- https://gitlab.com/GroGy/im-neo-sequencer Is there...