Lavorare con il formato VRML
Contents
[
Hide
]
Questa funzione è supportata dalla versione 19.4 o maggiore.
Apri il formato file VRML
Aspose.3D for .NET consente di lavorare con VRML versione 1.0. Il formato di file VRML
è stato aggiunto alla classe FileFormat
. Aspose.3D può rilevare automaticamente il formato, quindi il metodo FileFormat
viene solitamente ignorato con Open
. Il seguente frammento di codice mostra come aprire il formato di file 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... | |