Building Blocks

Building Blocks is a voxel library for real-time applications.

Meshing

Supported use cases include:

Short Code Example

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); ```

Learning

The current best way to learn about the library is to read the documentation and examples. 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.

Design Philosophy and Architecture

Principles

The architecture of Building Blocks is driven by a few guiding principles:

Architecture

Noting the above principles, here is a quick summary of the design decisions which brought about the current feature set:

Roadmap

  1. v0.1: Publish on crates.io with enough core functionality to provide interesting examples in a popular Rust game engine (Bevy)
  2. Octree from height map
  3. procedurally generated heightmaps for terrain
    1. fractal noise
    2. hydraulic erosion
  4. Bevy integration
    1. ECS systems for dynamic meshing
  5. Rapier3d integration
  6. level of detail
    1. stitching chunks on LoD boundaries
    2. geomorphing
  7. GPU acceleration of core algorithms
  8. SIMD variants of core data types