mirror of
https://github.com/flash555588/ai-model-workbench.git
synced 2026-07-22 06:56:38 +00:00
- Extend verify-preview.mjs with --model argument for custom model paths - Add MIME types for STL/PLY/OBJ formats - Update visual-preview-entry.ts to read model path from URL params - Add test cases for STL, PLY, OBJ, and alternate GLB path - Create simple test model files for each format
20 lines
304 B
Text
20 lines
304 B
Text
ply
|
|
format ascii 1.0
|
|
element vertex 4
|
|
property float x
|
|
property float y
|
|
property float z
|
|
property uchar red
|
|
property uchar green
|
|
property uchar blue
|
|
element face 4
|
|
property list uchar int vertex_indices
|
|
end_header
|
|
0 0 0 255 0 0
|
|
1 0 0 0 255 0
|
|
0 1 0 0 0 255
|
|
0 0 1 255 255 0
|
|
3 0 1 2
|
|
3 0 1 3
|
|
3 0 2 3
|
|
3 1 2 3
|