binpack-3d 0.1.0

A high-performance, deterministic 3D bin packing library written in Rust.
Documentation
//! A programm for sorting items in bins
#![deny(missing_docs)]
#![deny(unused_must_use)]
#![deny(unused_results)]
/// A AABB Checker
pub mod aabb;
/// The generic trait for the algorithmens
pub mod algorithmen;
/// A bin for items
pub mod bin;
/// The corner
pub mod corners;
/// A item
pub mod items;
/// Second algorithmen
#[cfg(feature = "second_algorithmen")]
pub mod second_algorithmen;
/// Finished Bin
pub mod sortedbin;
/// Vectors
pub mod vector;
/// Wasm interface
#[cfg(target_arch = "wasm32")]
pub mod wasm_interface;