使用 VRML 格式
Contents
[
Hide
]
19.4或更高版本支持此功能。
打开 VRML 文件格式
Aspose.3D for .NET 允许使用 VRML 版本1.0。VRML
文件格式已添加到 FileFormat
类。Aspose.3D 可以自动检测格式,因此 FileFormat
通常在 Open
方法中被忽略。下面的代码片段显示了如何打开 VRML 文件格式。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-3d/Aspose.3D-for-.NET | |
// Create a Scene | |
Scene scene = new Scene(); | |
// Open Virtual Reality Modeling Language (VRML) file format | |
scene.Open("test.wrl"); | |
// Work with VRML file format... | |