I have a request to display VRML models within a .NET application. Does someone know an easy way, maybe with standard .NET components, to achieve this? What are the issues I maybe have to face when representing VRML within an application?
Asked
Active
Viewed 3,644 times
3 Answers
2
The VRML standard has evolved into X3D (which still supports the old syntax, but pushes an XML-based syntax now. For anyone viewing this thread, it would be better to search for X3D and .Net rather than VRML and .Net. Also, for the web, checkout X3DOM.

ViennaMike
- 2,207
- 1
- 24
- 38
1
I think the main issue is that I hadn't seen anything/anyone using VRML in at least five years. I think you may be better off just finding a VRML->SVG converter. Displaying SVG in a browser is rather well-defined these days.

James Curran
- 101,701
- 37
- 181
- 258
-
That is a bad idea. You will definitely lose some information with the conversion. Using XML-representation of VRML as X3D and X3DOM as parser might help. – Endery Mar 14 '16 at 10:20
1
Get yourself a VRML ActveX control an insert that into your .NET app, you should be able to find one at www.web3d.org

Harald Scheirich
- 9,676
- 29
- 53
-
1er..um... have you SEEN a VRML ActveX control around recently? Try Googling for one. It's a rather barren field. That's why I recommended moving to SVG. – James Curran Oct 09 '08 at 14:12
-
1VRML is interactive 3D, i just don't see how you are going to get to SVG. I can definitely find more VRML/X3D plugins than VRML to SVG converter. – Harald Scheirich Oct 09 '08 at 19:00
-
Thank you for your suggestion James but for my needs Haralds advise will be more satisfying. The reason is that you have not only to see the 3D objects but also to turning them around and zooming in and out. – Mil Oct 10 '08 at 09:11