Mevcut bir 3D sahne oluşturun ve okuyun
Overview
The article explains the following topics using C# 3D file formats manipulation library.
- Sıfırdan C# içinde boş bir 3D sahne oluşturun
- Mevcut 3D sahnesini C# olarak okuyun veya yükleyin
- 3D sahnesini C# kullanarak desteklenen 3D formatlarında kaydedin
- Work with 3D Scene Properties in C#
Boş bir 3D sahne oluşturun ve desteklenen 3D dosya formatlarında kaydedin
Aspose.3D API yeni 3D sahnelerini sıfırdan oluşturmayı ve ardından desteklenen herhangi bir dosya biçiminde kaydetmeyi destekler. Geliştiriciler ayrıca değişiklik, ekleme veya işleme amaçları için mevcut bir 3D sahne yükleyebilir.
3D sahne belgesi oluşturma
Please follow these steps in C# to create a 3D Scene document using the Aspose.3D APIs:
- 3D sahne belgesini temsil eden
Scene
sınıfının bir örneğini oluşturun. - Generate a 3D Scene document by calling the
Save
method of the Scene class object.
3D sahnesini okumak
Using Aspose.3D API, developers can load all the supported 3D documents. The available constructors of the Scene
class allow to do so and they accept a valid file path string. The supported readable file formats are as follows:
- FBX 7.5 (ascii, ikili)
- FBX 7.4 (ascii, ikili)
- FBX 7.3 (ascii, İkili)
- FBX 7.2 (ascii, ikili)
- FBX 6.1 (ascii, ikili)
- STL (ascii, ikili)
- WavefrontOBJ
- Discreet3DS
- Universal3D
- Collada
- glTF (ascii, ikili)
- Maya (ascii, ikili)
- Openusd (USD, USDZ)
- Blender
- DXF
- PLY (ascii, ikili)
- X (ASCI I, Binary)
- Draco
- 3MF
- RVM (metin, ikili)
- ASE
Constructors of the Scene
class detect 3D document format internally.
3D sahne özellikleri ile çalışmak
Aspose.3D API, sahnenin çocuk düğümlerini kullanarak 3D sahne özelliklerini okumanızı sağlar. Aşağıdaki C# kod örneği bu özelliğin kullanımını gösterir.