1 2 3 4 5 6 7 8 9 10 11
//! Camera controls //! //! Provides various camera control schemes for interactive 3D viewing. mod first_person; mod fly; mod orbit; pub use first_person::FirstPersonControl; pub use fly::FlyControl; pub use orbit::OrbitControl;