paddle 0.1.0-beta.1

2D Game Engine for Rust on the Web
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod grid;
mod rectangle;
mod scalar;
mod transform;
mod vector;

pub use grid::*;
pub use rectangle::*;
pub use scalar::*;
pub use transform::*;
pub use vector::*;

#[cfg(feature = "const_fn")]
mod const_shape;
#[cfg(feature = "const_fn")]
pub use const_shape::*;