app that turns raw vector information into file?

Started by
2 comments, last by sp_1d4r 18 years, 7 months ago
i can output many different patterns of vertice information including vertex and face normals, is there a program that can take my unprocessed input as a file or other type of input and come up with a useable known 3d file format?
Advertisement
How are you outputting them currently?

Richard "Superpig" Fine - saving pigs from untimely fates - Microsoft DirectX MVP 2006/2007/2008/2009
"Shaders are not meant to do everything. Of course you can try to use it for everything, but it's like playing football using cabbage." - MickeyMouse

Your best bet is probably to research the file format you are interested in (try here), and figure out how to organize your own data into that format as part of the output process.
im exporting a 8 float vertice format, vertex x,y,x vertexnormal x, y, z, and u, v


just a plain fprintf(file, "%f %f %f %f %f %f %f %f"...........

no binary formatting

This topic is closed to new replies.

Advertisement