VRML formatı ile çalışmak
Contents
[
Hide
]
Open VRML File Format
Aspose.3D for Node.js via Java allows working with VRML version 1.0. VRML
file format has been added to the FileFormat
class. Aspose.3D can auto detect VRML
format, so the FileFormat
is usually ignored in Open method. The following code snippet shows how open VRML file format.
// initialize a scene
var scene = new aspose.threed.Scene();
// open Virtual Reality Modeling Language (VRML) file format
scene.open( "test.wrl");