BRU-12 is a research project for performing realtime processing on volumetric 3D models and presenting them as meshes ready for rendering. The toolchain consists of Cinder and OpenVDB.

OpenVDB is an industrial-grade data structure used for parallel processing of very large amounts of volumetric (“voxel”) data. It’s not really intended to be used for real-time rendering, but its design (and performance!) was interesting to me so I decided to try to implement a simple data pipeline on top of it. Modern real-time graphics are quite often “slaves” to the internal data structure used to represent geometry – the mesh. I wanted to try a different approach.

The GitHub repo contains a working Cinder app which implements a queue-based pipeline on top of a couple of very generic base classes (see Queue.hpp, Stage.hpp, StageProcessor.hpp). Each step in the pipeline performs a well-defined, encapsulated operation based on immutable input data read from the input queue, and then puts the result onto the output queue.

Currently, the Muncher stage performs a predetermined number of randomized volumetric addition operations on the OpenVDB tree, followed by randomized subtraction operations on it. Then the Decay stage takes the modified tree and decays it at each iteration step, gnawing away at the volume from below.

For a glimpse of the potential this pipelined approach has, take a look at the volumetric cube below. The pipelined processing was running on just one thread, and yet it was able to achieve realtime rendering fidelity.

Admittedly, the tree resolution was not that big, but this approach has lots of potential if one were to partition the OpenVDB tree, apply operations to it in parallel, and then merge the results back into one tree again before it’s passed to the meshing stage. I moved on to another project before implementing this, c’est la vie.

Feel free to use the code however you wish. If I’m ever to return to it at some point, I’d rewrite it in Rust. It is the future.

Development Screenshots