Skip to main content

binpack_3d/
lib.rs

1//! A programm for sorting items in bins
2#![deny(missing_docs)]
3#![deny(unused_must_use)]
4#![deny(unused_results)]
5/// A AABB Checker
6pub mod aabb;
7/// The generic trait for the algorithmens
8pub mod algorithmen;
9/// A bin for items
10pub mod bin;
11/// The corner
12pub mod corners;
13/// A item
14pub mod items;
15/// Second algorithmen
16#[cfg(feature = "second_algorithmen")]
17pub mod second_algorithmen;
18/// Finished Bin
19pub mod sortedbin;
20/// Vectors
21pub mod vector;
22/// Wasm interface
23#[cfg(target_arch = "wasm32")]
24pub mod wasm_interface;