runmat_plot/core/
mod.rs

1//! Core rendering and scene management for RunMat Plot
2//!
3//! This module provides the foundational components for GPU-accelerated
4//! interactive plotting, including WGPU rendering, scene graphs, and
5//! camera systems.
6
7pub mod camera;
8pub mod interaction;
9pub mod plot_renderer;
10pub mod renderer;
11pub mod scene;
12
13pub use camera::{Camera, CameraController, MouseButton, ProjectionType};
14pub use interaction::{EventHandler, KeyCode, PlotEvent};
15pub use plot_renderer::{plot_utils, PlotRenderConfig, PlotRenderer, RenderResult};
16pub use renderer::*;
17pub use scene::*;