pack 0.4.0

Solver for packing puzzle.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Describes objects to be packed.
//!
//! At the moment only objects that are aligned with an ordinary rectangular grid can be defined.

mod symmetry;
mod translation;
mod position;
mod entity;
mod template;

pub use self::symmetry::{Transformable, CubeSymmetry, CubeSymmetryIterator};
pub use self::translation::{Translatable, Translation};
pub use self::position::{Position, Positionable, Normalizable, MinimumPosition};
pub use self::entity::{Piece};
pub use self::template::Template;