refactor: establish unified viewer workspaces

This commit is contained in:
2026-07-29 09:11:14 +09:00
parent bedb357259
commit 3279ac099e
27 changed files with 591 additions and 4483 deletions
-1
View File
@@ -24,7 +24,6 @@ Both are dependencies of `KTX2Loader`:
```js
const ktx2Loader = new KTX2Loader();
ktx2Loader.setTranscoderPath( 'examples/jsm/libs/basis/' );
ktx2Loader.detectSupport( renderer );
ktx2Loader.load( 'diffuse.ktx2', function ( texture ) {
File diff suppressed because one or more lines are too long
@@ -0,0 +1,17 @@
ply
format ascii 1.0
comment Three.js r185 Float64 normalization fixture
element vertex 3
property double x
property double y
property double z
property uchar red
property uchar green
property uchar blue
element face 1
property list uchar int vertex_indices
end_header
0.0 0.0 0.0 255 0 0
100.0 0.0 0.0 0 255 0
0.0 100.0 0.0 0 0 255
3 0 1 2
View File
View File