egui/crates/egui_plot
Emil Ernerfeldt b27aa27e94
Add `emath::Vec2b`, replacing `egui_plot::AxisBools` (#3543)
Thanks to `impl From<bool> for Vec2b` one can now shorten some builder
calls, like:

Previous:
```rust
 egui::ScrollArea::vertical()
        .auto_shrink([false; 2])
```

New:
```rust
 egui::ScrollArea::vertical()
        .auto_shrink(false)
```
2023-11-11 21:31:36 +01:00
..
src Add `emath::Vec2b`, replacing `egui_plot::AxisBools` (#3543) 2023-11-11 21:31:36 +01:00
CHANGELOG.md Fix HTTP web demo (#3407) 2023-09-28 12:06:55 +02:00
Cargo.toml Release 0.23.0 - New image API 2023-09-28 08:44:33 +02:00
README.md Break out plotting to own crate `egui_plot` (#3282) 2023-08-27 17:22:49 +02:00

README.md

egui_plot

Latest version Documentation unsafe forbidden MIT Apache

Immediate mode plotting for egui.