fastpack_core/algorithms/mod.rs
1//! Packing algorithms that place sprites onto atlas sheets.
2//!
3//! Each algorithm implements the [`packer::Packer`] trait. Available strategies
4//! range from simple row-strip and grid placement to the MaxRects bin-packer.
5
6pub mod basic;
7pub mod grid;
8pub mod maxrects;
9pub mod packer;
10pub mod polygon;