Struct crunch::PackedItems
source · pub struct PackedItems<T> {
pub w: usize,
pub h: usize,
pub items: Vec<PackedItem<T>>,
}Expand description
A container of packed items.
Fields§
§w: usizeThe width of the container.
h: usizeThe height of the container.
items: Vec<PackedItem<T>>The items packed into the container.