Blader door onze producten

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.3D für .NET 22.2

Downloaden  Helpforum 

Bestandsdetails

  • Downloads:
  • 19
  • Dateigröße:
  • 9.9 MB
  • Posted By:
  • lex.chou
  • Ansichten:
  • 47
  • Hinzugefügt am:
  • 2/7/2022

Bestandsdetails

Texturen in U3D & PDF einbetten

Betten Sie Texturen in Dateien im U3D- und PDF-Format ein. Generieren Sie eine 3D-PDF-Datei mit eingebetteten Texturdateien.

var scene = new Scene();
scene.Open($"test.obj");
var opt = new PdfSaveOptions();
//embed the external textures in the output PDF file.
opt.EmbedTextures = true;
//Look up external textures in the  common/textures directory
opt.LookupPaths.Add("common/textures");
scene.Save("test.pdf", opt);

Generieren Sie U3D mit eingebetteter Textur

Setzen Sie dies auf „true“, um eine 3D-U3D-Datei mit eingebetteten Texturdateien zu generieren.

        var scene = new Scene();
        scene.Open($"test.obj");
        var opt = new U3dSaveOptions();
        //embed the external textures in the output PDF file.
        opt.EmbedTextures = true;
        //Look up external textures in the  common/textures directory
        opt.LookupPaths.Add("common/textures");
        scene.Save("test.u3d", opt);

Verbesserte Unterstützung des GLTF-Formats

Möglichkeit, auf Extras und Erweiterungen in der Datei im GLTF-Format zuzugreifen.

Codieren Sie 3D-Szenen- und Knoten-Metadaten

Erlauben Sie, die Metadaten der Szene und des Knotens in „USD“ zu codieren.

3D-Szenen- und Knoten-Metadaten dekodieren

Erlauben Sie, die Metadaten der Szene und des Knotens von USD zu dekodieren.

Eine vollständige Liste der Funktionen, Verbesserungen und Fehlerbehebungen in dieser Version finden Sie unter Aspose.3D for .NET 22.2 Release Notes.

 Deutsch