Просмотрите наши продукты

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 для .NET 22.2

Скачать  Форум поддержки 

Сведения о файле

  • Загрузки:
  • 19
  • Размер файла:
  • 9.9 MB
  • Posted By:
  • lex.chou
  • Просмотры:
  • 47
  • Дата добавления:
  • 2/7/2022

Сведения о файле

Встроить текстуры в U3D и PDF

Встраивайте текстуры в файлы форматов U3D и PDF. Создайте файл 3D PDF со встроенными файлами текстур.

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

Создание U3D со встроенной текстурой

Установите для этого параметра значение true, чтобы сгенерировать файл 3D U3D со встроенными файлами текстур.

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

Улучшенная поддержка формата GLTF

Возможность доступа к дополнениям и расширениям в файле формата GLTF.

Кодировать 3D-сцену и метаданные узла

Разрешить кодировать метаданные сцены и узла в USD.

Декодировать метаданные 3D-сцены и узла

Разрешить декодировать метаданные сцены и узла из USD.

Полный список функций, улучшений и исправлений ошибок в этом выпуске можно найти на странице Aspose.3D for .NET 22.2 Release Notes.

 Русский