C#を介してUSDを3MFに変換します
.NETフレームワーク、.NETコア、およびMonoを使用してUSDおよびその他の3Dファイルをエクスポートします
USDシーンをC#付きの3MFとしてエクスポート
- のコンストラクタを使用してUSDファイルをロードします
シーン
クラス2.電話する
Scene.Save
方法
3.最初のパラメーターとして.3mf拡張子の出力ファイル名を渡します
4.から
Microsoft3MF
フィールド値を指定します FileFormat クラス
3Dフォーマット変換APIfor .NET
コマンドラインからnuget install Aspose.3d
としてインストールするか、VisualStudioのパッケージマネージャーコンソールから`` `Install-PackageAspose.3D```を使用してインストールします。
または、オフラインのMSIインストーラーまたはDLLをZIPファイルから取得します。 ダウンロード 。
C#USDから3MFへの変換のコード
// シーンのオブジェクトにUSDをロードします
var scene = new Aspose.ThreeD.Scene("template.usd");
// USDを3MFとして保存
scene.Save("output.3mf", Aspose.ThreeD.FileFormat.Microsoft3MF);
Other Conversion Options
USD What is USD File Format?
A file with .usd extension is a Universal Scene Description file format that encodes data for the purpose of data interchanging and augmenting between digital content creation applications. Developed by Pixar, USD provides the ability to interchange elemental assets (such as models) or animation.
Read More3MF What is 3MF File Format?
3MF, 3D Manufacturing Format, is used by applications to render 3D object models to a variety of other applications, platforms, services and printers. It was built to avoid the limitations and issues in other 3D file formats, like STL, for working with the latest versions of 3D printers. 3MF is relatively a new file format that has been developed and published by the 3MF consortium. It is rich enough to fully describe a model, retaining internal information, colour, and other characteristics that makes it extensible for supporting new innovations in 3D printing. The format is extensible, able to be broadly adopted and free of issues besetting other widely used file formats.
Read More