Franc Marx
Franc Marx
@AllenDang I have big data to plot (> 100k points/vertices) without uncommenting `#define ImDrawIdx unsigned int` in imconfig.h I get an error: `imgui.cpp:4143: void AddDrawListToDrawData(ImVector*, ImDrawList*): Assertion "draw_list->_VtxCurrentIdx < (1
@AllenDang [implot](https://github.com/epezent/implot) is "the best" lib for plotting, it has many function (zoom, pan, lin/log ...) so I don't want to switch to another lib, I simply need a easy...
@AllenDang it doesn't work, I got the assert error: ``` imgui.cpp:4143: void AddDrawListToDrawData(ImVector*, ImDrawList*): Assertion `draw_list->_VtxCurrentIdx < (1
@daiwhea @AllenDang I added `io.SetBackendFlags(imgui.BackendFlagsRendererHasVtxOffset)` to MasterWindow.go => it works fine :)
@gucio321 I know "giu.Plot().Flags(giu.PlotFlagsAntiAliased)", but it doesn't solve my problem: I want to draw lines WITHOUT anti-aliasing. I can only switch on anti-aliasing with that flag. It seems that anti-aliasing...
@gucio321 Should I switch from imgui-go to cimgui-go ? cimgui-go has no official release yet. How can the change to cimgui-go be made easily?
@gucio321 running giu with cimgui-go form master branch I managed to compile, but many things from implot I have to comment out: - how to make plots with second and...
@gucio321 "2nd and 3rd axis": old code was: ``` giu.Plot("Rotation").Flags(giu.PlotFlagsYAxis2).Plots( .... ) ``` now it doesn't work because PlotFlagsYAxis2 doesn't exist, in flags.go it is commented out: ``` const (...
@gucio321 another problem: when entering '2' key from numpad to gui.InputFloat(...) I got an error "panic: Unknown key: 322" at line 204 from Keycode.go normal '2' from main-keyboard works (is...
@gucio321 numkeys work now, thanks :) checking the framerate I found a difference between imgui-go and cimgui-go: with imgui I have 60 fps, but with cimgui only 30fps I checked...