geng_utils/
lib.rs

1/// Bounded value.
2pub mod bounded;
3/// Handy conversion between types.
4pub mod conversions;
5/// Some primitive geometric shapes.
6pub mod geometry;
7/// GIF loader.
8pub mod gif;
9/// A possibly more convenient key enum.
10pub mod key;
11/// Layout utils.
12pub mod layout;
13/// Operations useful for pixel art.
14pub mod pixel;
15/// Common operations with textures.
16pub mod texture;
17/// Generating tiled geometry.
18pub mod tiled;
19/// Operations for handling torus worlds.
20pub mod torus;