Navegue pelos nossos produtos

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 para .NET 22.2

Download  Fórum de suporte 

Detalhes do arquivo

  • Downloads:
  • 19
  • Tamanho do arquivo:
  • 9.9 MB
  • Posted By:
  • lex.chou
  • Visualizações:
  • 47
  • Data de adição:
  • 2/7/2022

Detalhes do arquivo

Incorporar texturas em U3D e PDF

Incorpore texturas em arquivos de formato U3D e PDF. Gere arquivo PDF 3D com arquivos de textura incorporados.

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);

Gerar U3D com textura incorporada

Defina como true para gerar o arquivo 3D U3D com arquivos de textura incorporados.

        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);

Suporte aprimorado do formato GLTF

Capacidade de acessar extras e extensões no arquivo de formato GLTF.

Codifique cenas 3D e metadados de nós

Permite codificar os metadados da cena e do nó para USD.

Decodificar cenas 3D e metadados de nós

Permite decodificar os metadados da cena e do nó de USD.

Para obter uma lista completa de recursos, aprimoramentos e correções de bugs nesta versão, visite Aspose.3D for .NET 22.2 Release Notes.

 Português