Skip to main content

viewport_lib/camera/
mod.rs

1/// Smooth camera motion with exponential damping and fly-to animations.
2pub mod animator;
3/// Arcball camera with perspective and orthographic projections.
4pub mod camera;
5/// View frustum planes and AABB culling.
6pub mod frustum;
7/// Named standard camera orientations (front, top, isometric, etc.).
8pub mod view_preset;
9
10// Re-export the most-used types at the module level so that
11// `viewport_lib::camera::Camera` continues to resolve.
12pub use camera::{Camera, CameraTarget, Projection};