fey_packer 0.1.1

A 2D rectangle packer.
Documentation
1
2
3
4
5
6
7
use fey_math::Vec2U;

/// An item that has been packed.
pub struct Packed<T> {
    pub data: T,
    pub pos: Vec2U,
}