texture_packer 0.19.0

A texture packing library using the skyline heuristic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate image;

pub use crate::{
    frame::Frame, multi_texture_packer::MultiTexturePacker, rect::Rect,
    texture_packer::TexturePacker, texture_packer_config::TexturePackerConfig,
};

pub mod exporter;
pub mod importer;
pub mod texture;

mod frame;
mod multi_texture_packer;
mod packer;
mod rect;
mod texture_packer;
mod texture_packer_config;