rtbvh icon indicating copy to clipboard operation
rtbvh copied to clipboard

BVH library for Rust

Results 2 rtbvh issues
Sort by recently updated
recently updated
newest added

**Issue**: -------------------- In the environment depicted below, intersection checks (from every origin, in every direction) fail for the two large triangles using the standard BVH implementation. When stepping through the...

During MBVH construction the algorithm panics. ```rust let bvh = (Builder { aabbs: None, primitives: triangles.as_slice(), primitives_per_leaf: None, }) .construct_binned_sah() .unwrap_or_default(); let bvh = Mbvh::from(bvh); ``` ```rust thread 'main' panicked...