voronoid 0.0.2

3D Voronoi tessellation in Rust: a fast, feature-rich grid-based approach ready for WASM and TypeScript.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Integration Tests

This folder contains all integration tests for the `voronoid` library.

## Usage

To run the tests:
```bash
cargo test --test <file>
```
with the following tests available:
* `comparisons`: Compares the output with the results from existing libraries ([Voro++]https://github.com/chr1shr/voro).
* `integration`: Tests covering the public API and workflow of the library.
* `mappings`: Tests the map functionality for on-the-fly calculations.
* `neighbors`: Does test on the neighbor structure of the cells.
* `volumes`: compares the sum of all cell volumes to the theoretical value for different walls.