是否存在用于创建.obj文件的Java库。加载.obj文件有许多用于像JOGL这样的API,但我找不到与创建.obj文件有关的任何内容。
答案 0 :(得分: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();