Skip to content

Commit

Permalink
Change the threshold of dynamic splat remove from 0.001 to 0.0001
Browse files Browse the repository at this point in the history
  • Loading branch information
quadjr committed Oct 17, 2023
1 parent d26566c commit f9f876e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ AFRAME.registerComponent("gaussian_splatting", {

const sortSplats = function sortSplats(matrices, view){
const vertexCount = matrices.length/16;
let threshold = -0.001;
let threshold = -0.0001;

let maxDepth = -Infinity;
let minDepth = Infinity;
Expand Down

0 comments on commit f9f876e

Please sign in to comment.