العمل بصيغة VRML
Contents
[
Hide
]
Tويدعم ميزة له من قبل الإصدار 19.4 أو أكبر.
افتح تنسيق ملف VRML
Aspose.3D for .NET يسمح بالعمل مع الإصدار 1.0 VRML. تمت إضافة تنسيق ملف 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... | |