Building Blocks is a voxel library for real-time applications.
Supported use cases include:
The code below samples a signed distance field and generates a mesh from it.
```rust use buildingblocks::{ prelude::*, mesh::{SurfaceNetsBuffer, surfacenets}, procgen::signeddistancefields::sphere, };
let center = PointN([25.0; 3]); let radius = 10.0; let sphere_sdf = sphere(center, radius);
let extent = Extent3i::fromminandshape(PointN([0; 3]), PointN([50; 3])); let mut samples = Array3::fillwith(extent, &sphere_sdf);
let mut meshbuffer = SurfaceNetsBuffer::new(); surfacenets(&samples, samples.extent(), &mut mesh_buffer); ```
Building Blocks is organized into several crates, some of which are hidden behind features, and some have features themselves, which get re-exported by the top-level crate.
For example, chunk compression supports two backends out of the box: Lz4
and Snappy
.
They are enabled with the "lz4" and "snappy" features. "lz4" is the default, but it relies on a C++ library, so
it's not compatible with WASM. But Snappy is pure Rust, so it can! Just use default-features = false
and add "snappy"
to you features
list, like so:
toml
[dependencies.building-blocks]
version = "0.3"
default-features = false
features = ["snappy"]
The current best way to learn about the library is to read the documentation and examples.
For the latest stable docs, look here.
For the latest unstable docs, clone the repo and run
sh
cargo doc --open --all-features
There is plentiful documentation with examples.
Take a look in the examples/
directory to see how Building Blocks can be used
in real applications.
To run the benchmarks (using the "criterion" crate), go to the root of a crate
and run cargo bench
.
To learn more about the motivations behind the library's design, read about our design philosophy and architecture.
We prioritize work according to the project board.
If you'd like to make a contribution, please first read the contribution guidelines.