Работа с форматом 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... | |