Working with VRML Format

Contents
[ ]

Open VRML File Format

Aspose.3D for Python via .NET allows working with VRML version 1.0. VRML file format has been added to the FileFormat class. Aspose.3D can auto detect the format, so to FileFormat is usually ignored in open method. The following code snippet shows how open VRML file format.

from aspose.threed import Scene

#  For complete examples and data files, please go to https:# github.com/aspose-3d/Aspose.3D-for-.NET
#  Create a Scene
scene = Scene()
#  Open Virtual Reality Modeling Language (VRML) file format
scene.open("data-dir"  + "test.wrl")