Skip to main content

kithe_plot/view/
mod.rs

1//! View layer (MVC "V").
2//!
3//! Contains egui widgets and layout. The view never mutates model directly; it emits `Action`s.
4
5pub mod app;
6pub mod menu;
7pub mod panels;
8
9pub use app::*;
10pub use menu::*;
11pub use panels::*;
12
13