No description
Find a file
4bb4 a747fa2d91 Added both the build() and the begin()+end() options for Plot
- Copied the trick from imgui-rs to notice if a begin() is left
  unmatched
- Changed plot_line to be a struct, but might go away from that
  again. Initial idea was to add things like setting markers and
  colors to this as struct methods, but it seems this will lead
  to lots of code overhead compared to the pushing and popping
  stylevars approach taken in the C++ implementation.
2020-08-08 15:40:04 +02:00
implot-sys Refactored Plot building, various example updates 2020-08-08 14:42:22 +02:00
implot-sys-bindgen Added a separate bindgen building crate and pre-generated bindings 2020-08-03 21:50:03 +02:00
src Added both the build() and the begin()+end() options for Plot 2020-08-08 15:40:04 +02:00
testexample Added both the build() and the begin()+end() options for Plot 2020-08-08 15:40:04 +02:00
.gitattributes Found linguist-generated, using that instead 2020-08-04 22:15:41 +02:00
.gitignore Initial commit 2020-07-01 19:40:18 +02:00
.gitmodules Added submodule for cimplot and some build code 2020-07-02 21:15:22 +02:00
Cargo.toml Added main crate and some initial code for idiomatic bindings 2020-08-04 22:05:04 +02:00
LICENSE Initial commit 2020-07-01 19:40:18 +02:00
README.md Updated readme with current state and next steps 2020-08-03 21:52:45 +02:00

implot-rs

🚧 Work in progress, check back later (or open an issue if you'd like to collaborate) 🚧

Initial attempt at creating Rust bindings for https://github.com/epezent/implot.

At this point, raw bindings are working in implot-sys, and there is a test example (just an adapted version of imgui-rs' example) that calls into them for trying things out. More idiomatic bindings will be built next.