implot-rs/README.md

22 lines
869 B
Markdown
Raw Normal View History

2020-07-01 17:41:31 +00:00
# implot-rs
2020-08-08 14:01:51 +00:00
Rust bindings for [ImPlot](https://github.com/epezent/implot), built by running
[bindgen](https://github.com/rust-lang/rust-bindgen) on [cimplot](https://github.com/cimgui/cimplot).
2020-07-01 19:50:14 +00:00
2020-08-08 14:01:51 +00:00
![demo](demo.png)
2020-07-01 19:50:14 +00:00
2020-08-08 14:01:51 +00:00
## Requirements
imgui-rs requires minimum Rust version 1.40, so this project does as well by extension.
Currently the master branch of imgui-rs is used as a dependency until
https://github.com/Gekkio/imgui-rs/pull/339 makes it into a release.
2020-07-01 19:50:14 +00:00
2020-08-08 14:01:51 +00:00
The sys crate compiles imgui, so a C++ compiler will also be required.
## Status
Currently a work in progress. The author is open to collaboration, if you'd like to
help, feel free to reach out via a Github issue.
At this point, raw bindings are working in implot-sys, and more idiomatic interfaces
for plot creation as well as adding lines to plots are implemented. Everything else
is still being built.