transvoxel_data/lib.rs
1//! Look-up tables used by the Transvoxel Algorithm.
2//!
3//! This provides the look-up tables needed for the [Transvoxel Algorithm](http://transvoxel.org).
4//! The algorithm implementation is not provided in this crate.
5//!
6//! Based on the work by Eric Lengyel.
7
8pub mod regular_cell_data;
9pub mod transition_cell_data;
10pub mod prelude;
11
12#[cfg(test)]
13mod tests {
14 #[test]
15 fn it_works() {
16 assert_eq!(2 + 2, 4);
17 }
18}