im a student and i am new to opengl especially in opentk, and i am doing a software in c# to a project that need to open a dxf file.
So if anyone can help me with something.
Posted Wednesday, 13 January, 2010 - 18:57 by the Fiddler
I don't know of any free DXF loaders for C#. Potential solutions:
Convert to another format which has loaders available. Obj, MD5, X are some options.
Use a free loader that is written in a different language. A quick search reveals loaders written in C++ (can be used through p/invoke) and Java (can be compiled to .Net dll using IKVM).
Write a DXF loader by scratch. The format looks relatively easy to parse (see here and here) and you can use projects written in other languages as a guide.
Comments
Re: need help
I don't know of any free DXF loaders for C#. Potential solutions: