製品を閲覧する

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 for .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 を生成

テクスチャ ファイルが埋め込まれた 3D U3D ファイルを生成するには、これを true に設定します。

        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 にアクセスしてください。

 日本