2010-11-12 78 views
4

是否有創建.obj文件的Java庫。加載.obj文件有許多用於像JOGL這樣的API,但我無法找到任何與創建.obj文件有關的信息。用Java創建.obj文件

+1

什麼是obj文件?它是特殊應用程序的文件格式嗎?如果是這樣,請妥善標記問題。 – Daniel 2010-11-12 05:51:37

+1

obj文件是通用的3D對象。 http://en.wikipedia.org/wiki/Obj – Affian 2010-11-12 05:54:55

回答

4

也許this可以幫助,它指的是ObjWriter類,與使用示例:

// Open the OBJ file "MyObject.obj" 
OBJWriter writer = new OBJWriter("MyObject.obj"); 

// Write one node or more if you want 
writer.writeNode(java3DNode1); 
writer.writeNode(java3DNode2); 
// ... 

// Close file. This will create the MTL file and texture files in same directory 
writer.close();