views:

192

answers:

3

I have written a vector-based 3D editor (UI customized somewhat like technical drawings). I now want save the vectors/drawing data in portable formats. Which formats are available; which (one?) of them are the most widely accepted, and where can I get hold of the format specifications?

+2  A: 

Scalable Vector Graphics (SVG)

Brian Ensink
I saw that; It says two-dimensional... what am I missing here?
slashmais
+1  A: 

DXF: http://en.wikipedia.org/wiki/AutoCAD_DXF

Paul Nathan
DXF has been around for quite a while now and is a widely accepted interchange format. There are, however, different versions which cope with different types of entities.
CAD bloke
+1  A: 

Commercially, many users will look for AutoCAD DWG and Bentley DGN formats. While not free, libraries for producing these formats can be found from the open design alliance

The GIS community use shape files quite a bit for vectorised 3d models, a free SDK for shape files can be found here. The OSG library is also free and supports a number of vector graphics formats.

Shane MacLaughlin