diff --git a/src/App.tsx b/src/App.tsx index 74903a4..d2391ba 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -24,8 +24,8 @@ const CV_TO_GL_MAT = new THREE.Matrix4().set( // Z-up to Y-up conversion matrix // Rotate -90 degrees around X axis to convert from Z-up to Y-up const Z_UP_TO_Y_UP = new THREE.Matrix4().set( - 1, 0, 0, 0, - 0, 0, 1, 0, + -1, 0, 0, 0, + 0, 0, -1, 0, 0, -1, 0, 0, 0, 0, 0, 1 ) @@ -210,7 +210,6 @@ const Scene = () => { const far = (1 / fov_x) * 20 return })} - ) return (