Installation

Installation

This page covers installing Aspose.3D 26.1.0 into a .NET project via NuGet.


Prerequisites

RequirementDetail
.NET SDK10.0 or later (dotnet --version to check)

Note: The Pose API has been modified in this release. Refer to the updated Pose documentation for the new members and usage patterns. | OS | Windows, macOS, or Linux | | NuGet | Included with .NET SDK |

Mesh API – Modified (API_MODIFIED)

Install via .NET CLI

dotnet add package Aspose.3D.FOSS

Install via Package Manager Console (Visual Studio)

dotnet add package Aspose.3D.FOSS

Verify the Installation

Create a minimal program that loads the library and instantiates a Scene:

using Aspose.ThreeD;

var scene = new Scene();
scene.Open("test.obj");
Console.WriteLine($"Nodes loaded: {scene.RootNode.ChildNodes.Count}");

Run with:

dotnet run

If you see the node count printed without exceptions, the package is installed correctly.


Project File Reference

After installation your .csproj file should contain:

<PackageReference Include="Aspose.3D.Converter" Version="1.0.0" />

Next Steps

See Also

 English