1
2
3
4
5
6
7
use math::Transform;

/// Describes a viewpoint into the world.
pub struct Camera {
    pub transform: Transform,
    pub zoom: f32,
}