Aspose.3D 21.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.3D --version 21.5.0
NuGet\Install-Package Aspose.3D -Version 21.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aspose.3D" Version="21.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.3D --version 21.5.0
#r "nuget: Aspose.3D, 21.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Aspose.3D as a Cake Addin
#addin nuget:?package=Aspose.3D&version=21.5.0

// Install Aspose.3D as a Cake Tool
#tool nuget:?package=Aspose.3D&version=21.5.0

.NET API for 3D File Formats

Version 21.5 Nuget

Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License

Aspose.3D for .NET empowers .NET applications to connect with 3D document formats. 3D .NET API lets engineers read, convert, build, alter, and control the substance of the 3D document formats without any 3D modeling and rendering software installed on the machine.

3D File Processing Features

Read & Write 3D Formats

Autodesk: FBX 7.2 to 7.5 (ASCII/Binary)
3D Systems CAD: STL (ASCII/Binary)
Wavefront: OBJ
Discreet 3D Studio: 3DS
Universal3D: U3D
Collada: DAE
GL Transmission: glTF (ASCII/Binary)
Google Draco: DRC
RVM: (Text/Binary)
Portable Document Format: PDF
Other: AMF, PLY (ASCII/Binary)

Save 3D Files As

WEB: HTML

Read 3D Formats

DirectX: X (ASCII/Binary)
Siemens: JT
Other: DXF, ASF, VRML, 3MF

Platform Independence

Aspose.3D for .NET is written in C# and supports Windows Forms as well as ASP.NET apps. Development can be performed on any platform that has a .NET environment for both 32-bit and 64-bit applications. It supports .NET Frameworks 2.0 till 4.7.2 as well as the Client Profile version for .NET Framework 4.0.

Get Started

Are you ready to give Aspose.3D for .NET a try? Simply execute Install-Package Aspose.3D from the Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.3D for .NET and want to upgrade the version, please execute Update-Package Aspose.3D to get the latest version.

Build a Scene with Primitive 3D Models using C# Code

You can execute the below code snippet to see how Aspose.3D performs in your environment or check the GitHub Repository for other common usage scenarios.

// initialize a Scene object
Scene scene = new Scene();
// create a Box model
scene.RootNode.CreateChildNode("box", new Box());
// create a Cylinder model
scene.RootNode.CreateChildNode("cylinder", new Cylinder());
// save drawing in FBX format
scene.Save(dir + "output.fbx", FileFormat.FBX7500ASCII);

Export 3D Scene to Compressed AMF via C# Code

Aspose.3D for .NET enables you to save 3D meshes in custom binary format, get all property values of 3D scenes as well as flip their coordinate system. The following example demonstrates the conversion of a 3D scene to AMF format while applying compression to it.

// load a scene
Scene scene = new Scene();
var box = new Box();
var tr = scene.RootNode.CreateChildNode(box).Transform;
tr.Scale = new Vector3(12, 12, 12);
tr.Translation = new Vector3(10, 0, 0);
tr = scene.RootNode.CreateChildNode(box).Transform;
// scale transform
tr.Scale = new Vector3(5, 5, 5);
// set Euler angles
tr.EulerAngles = new Vector3(50, 10, 0);
scene.RootNode.CreateChildNode();
scene.RootNode.CreateChildNode().CreateChildNode(box);
scene.RootNode.CreateChildNode().CreateChildNode(box);
// save compressed AMF file
scene.Save(dir + "output.amf", new AMFSaveOptions() {
  EnableCompression = true
});

Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Aspose.3D:

Package Downloads
Aspose.Total

Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications.

Aspose.3D.Codec.SkiaSharp

This plugin allows you to use SkiaSharp's image codec to encode and decode textures.

nilnul.geometry._stereo_._LIB_

cubic/3dimension geometry

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
24.3.0 80 3/26/2024
24.2.0 1,052 2/28/2024
24.1.0 1,757 1/30/2024
23.12.0 3,304 12/28/2023
23.11.1 1,126 12/8/2023
23.11.0 3,505 11/29/2023
23.10.0 3,485 10/30/2023
23.9.0 5,283 9/27/2023
23.8.0 7,145 8/25/2023
23.7.0 6,452 7/26/2023
23.6.0 6,429 6/26/2023
23.5.0 5,040 5/26/2023
23.4.0 6,763 4/13/2023
23.3.0 6,668 3/16/2023
23.2.0 6,220 2/14/2023
23.1.0 9,863 1/18/2023
22.12.0 9,405 12/21/2022
22.11.0 9,447 11/17/2022
22.10.0 10,702 10/14/2022
22.9.0 7,113 9/9/2022
22.8.0 19,584 8/3/2022
22.7.0 7,018 7/8/2022
22.6.0 10,583 6/10/2022
22.5.0 11,547 5/9/2022
22.4.0 6,675 4/13/2022
22.3.0 14,318 3/4/2022
22.2.0 8,331 2/7/2022
22.1.0 9,402 1/5/2022
21.12.0 2,515 12/3/2021
21.11.0 8,156 11/11/2021
21.10.0 6,537 10/9/2021
21.9.0 12,346 9/6/2021
21.8.0 14,412 8/6/2021
21.7.0 11,042 7/5/2021
21.6.0 4,349 6/7/2021
21.5.0 9,028 5/6/2021
21.4.0 10,400 4/2/2021
21.3.0 7,386 3/4/2021
21.2.1 10,136 2/14/2021
21.2.0 1,699 2/7/2021
21.1.0 3,451 1/8/2021
20.12.2 3,658 12/10/2020
20.12.0 1,629 12/5/2020
20.11.0 7,687 11/3/2020
20.9.0 3,991 9/4/2020
20.8.0 3,171 8/11/2020
20.7.0 3,131 7/3/2020
20.6.1 2,515 6/16/2020
20.6.0 3,240 6/8/2020
20.5.0 10,166 5/12/2020
20.4.0 4,629 4/9/2020
20.3.0 4,115 3/3/2020
20.2.1 3,283 2/14/2020
20.2.0 1,988 2/10/2020
20.1.0 4,823 1/2/2020
19.12.2 3,427 12/10/2019
19.12.0 1,636 12/9/2019
19.11.0 2,209 11/5/2019
19.10.0 35,070 10/9/2019
19.9.0 2,272 9/9/2019
19.8.0 2,112 8/2/2019
19.7.0 2,265 7/8/2019
19.6.0 2,408 6/5/2019
19.5.0 2,526 5/12/2019
19.4.0 2,090 4/4/2019
19.3.0 2,099 3/8/2019
19.2.0 2,795 2/2/2019
19.1.0 1,985 1/9/2019
18.12.0 2,202 12/6/2018
18.11.0 2,254 11/6/2018
18.10.0 2,050 10/9/2018
18.9.0 2,542 9/6/2018
18.8.0 2,112 8/8/2018
18.7.0 2,525 7/11/2018
18.6.0 3,136 6/11/2018
18.5.0 2,553 5/10/2018
18.4.0 2,415 4/16/2018
18.3.0 2,237 3/14/2018
18.2.0 2,309 2/8/2018
18.1.0 2,462 1/8/2018
17.12.0 2,259 12/8/2017
17.11.0 2,676 11/6/2017
17.10.0 2,192 10/10/2017
17.9.0 2,226 9/7/2017
17.8.0 2,150 8/8/2017
17.7.0 2,263 7/17/2017
17.6.0 2,868 6/5/2017
17.5.0 2,431 5/8/2017
17.4.0 2,365 4/5/2017
17.3.0 2,213 3/6/2017
17.2.0 2,244 2/15/2017
17.1.0 2,288 1/5/2017
16.12.0 2,506 12/4/2016
16.11.0 2,374 11/1/2016
16.9.0 2,239 9/29/2016
2.1.0 2,279 8/30/2016
2.0.0 2,400 8/2/2016
1.7.0 2,239 6/29/2016
1.6.1 2,566 5/26/2016
1.5.0 2,329 4/27/2016
1.4.0 2,344 4/1/2016
1.3.0 2,376 2/23/2016
1.2.0 2,394 12/18/2015
1.1.0 2,538 11/27/2015
1.0.0 2,396 10/26/2015