Crates.io | sampled-dmc |
lib.rs | sampled-dmc |
version | 0.1.2 |
source | src |
created_at | 2021-04-01 18:39:37.071477 |
updated_at | 2021-04-03 11:34:58.147505 |
description | An implementation of Dual Marching Cubes (DMC) for already sampled data |
homepage | |
repository | https://github.com/alexdevteam/dmc |
max_upload_size | |
id | 376907 |
size | 52,625 |
This crate defines a fast implementation for the Dual Marching Cubes technique, also known as Linear Hashed Marching Cubes, along with a concurrent octree structure for storing node data.
Unlike isosurface, this crate does NOT expect Signed Distance Functions (SDFs) or use them in any way. The input of the mesh creation functions is the data octree itself, not a sampling source, which makes it appropiate for situations where storing the sampled points is appropiate (i.e. complex SDFs, destructible environments or objects with different LODs).