nitro 0.9.1

A game engine built in Rust. This crate is no longer maintained.
Documentation
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,
}