3d plot from debugger -


i visualize data in debugger possible. means, when have 3d data in form of example std::vector<glm::vec3> create scatterplot in debugger. on linux , therefore debugger gdb. there gdb plugins already? if not, how should approach on own.

there nothing built in. can done, though.

one reasonably easy way script gdb in python. write python code extract data want program debugging. then, send process display it.

another way try make display directly inside using gdb, again using python interface. however, trickier because gui has run in separate thread; , running separate threads in gdb process has issues. see gdb-gui project example of how accomplish this.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -