1
從我的計算中,我得到了很多原始字節的數據。我不想將它們視爲圖像,而是將其視爲3D相對標準的文件。 (c.f.關於PPM的前一個問題:What is the simplest RGB image format?)什麼是3D結構最簡單的文件格式?
我想在文件中放一些頭文件和一堆struct point
,然後用標準的3d文件查看器(如g3dviewer)打開這個文件。
struct point {
unsigned int x; // coordinates
unsigned int y;
unsigned int z;
unsigned char r; // color
unsigned char g;
unsigned char b;
}
我已經看了obj文件格式,但它迫使我在描述立方頂點文本行平移每個點。
這個簡單的3D文件格式是否存在?