Explore nuestros productos

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

Descargar  Foro de soporte 

detalles del archivo

  • Descargas:
  • 19
  • Tamaño del archivo:
  • 9.9 MB
  • Posted By:
  • lex.chou
  • Vistas:
  • 47
  • Fecha de adición:
  • 2/7/2022

detalles del archivo

Texturas incrustadas en U3D y PDF

Incruste texturas en archivos de formato U3D y PDF. Genere un archivo PDF 3D con archivos de textura incrustados.

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

Generar U3D con textura incrustada

Establézcalo en verdadero para generar un archivo 3D U3D con archivos de textura incrustados.

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

Compatibilidad mejorada con el formato GLTF

Capacidad para acceder a extras y extensiones en el archivo de formato GLTF.

Codificar escena 3D y metadatos de nodo

Permitir codificar la escena y los metadatos del nodo en USD.

Decodificar escena 3D y metadatos de nodo

Permitir decodificar la escena y los metadatos del nodo desde USD.

Para obtener una lista completa de funciones, mejoras y correcciones de errores en esta versión, visite Aspose.3D for .NET 22.2 Release Notes.

 Español