Aspose.3D 24.7.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.3D --version 24.7.1                
NuGet\Install-Package Aspose.3D -Version 24.7.1                
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="24.7.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.3D --version 24.7.1                
#r "nuget: Aspose.3D, 24.7.1"                
#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=24.7.1

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

.NET API for 3D File Formats

Version 24.7.1 Nuget

banner

Product Page | Docs | Demos | API Reference | Examples | Blog | Releases | 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.

What is Aspose.3D for .NET?

Aspose.3D for .NET is an on premise class library that enables your .NET applications to create, read, manipulate, convert and save various formats of 3D files (e.g. 3DS, 3MF, DAE, DFX, gITF, U3D, etc.), without installing any 3rd party 3D modeling or rendering software.

Aspose.3D for .NET API enhances your .NET apps to open files of 3D formats and work with the elements within the 3D scenes; such as; line, mesh, nurbs, curves to more complex elements like animation. You can also work with textures, parametrized geometries, scene graphs, custom properties, skeletons, morph deformers and much more.

Aspose.3D for .NET can be used on any operating system (Windows, MacOS, Linux) that can install Mono (.NET 4.0 Framework support) or use .NET Core. It is a single .NET library that you can deploy with any .NET application by simply copying it. You do not have to worry about other services or modules. Aspose.3D for .NET is designed to perform equally well on the server as well as the client-side.

3D File Processing Features

Here is the formatted content based on your requirements:

Supported File Formats

The following table indicates the file formats that Aspose.3D for .NET - C# 3D file manipulation and conversion API can load and save.

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 (Including mesh/point cloud support)
  • Aveva: RVM (Text/Binary)
  • Portable Document Format: PDF (3D PDF, Only supports standard U3D embedded 3D content in PDF. PRC and U3D with RH Mesh extension are not supported yet.)
  • Other: AMF, PLY (ASCII/Binary)

Save 3D Files As

  • WEB: HTML

Read 3D Formats

  • DirectX: X (ASCII/Binary)
  • Siemens®: JT (Only supports version 8 and 9)
  • Other: DXF, ASE, VRML 1.0 (Only supports 1.0 ASCII), 3MF, MA, MB

System Requirements and Supported Development

Overview

Aspose.3D for .NET requires no modeling/rendering software. It includes a document generation engine.

Supported Operating Systems

Windows:

  • Windows 2003/2008/2012/2012 R2/2016/2019 Server (x64, x86)
  • Windows Vista/XP/7/8/8.1/10 (x64, x86)
  • Microsoft Azure

macOS:

  • Mac OS X x64 (10.12+)

Linux:

  • Linux x64 (various versions)

Other:

  • Any OS with Mono (.NET 4.0) or .NET Core

Rendering Requirements

OpenGL 4.3:

  • NVIDIA Ge-Force 400+ series
  • AMD Radeon HD 5000+ series
  • Intel HD Graphics (Haswell+)

Vulkan x64:

  • AMD Radeon 7700+ series
  • NVIDIA GeForce 600+ series
  • Intel Skylake+

Development Environments

  • Microsoft Visual Studio 2010/2011/2012/2013/2015/2017/2019

Supported .NET Framework Versions

  • .NET Framework 4.0 to 4.7.2
  • .NET Standard 2.0 (including .NET Core 2.0/2.1)

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

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

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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 netcoreapp3.1 is compatible. 
.NET Framework 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.
  • .NETFramework 4.6

    • No dependencies.
  • net6.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (5)

Showing the top 5 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.

nilnul.geometry._stereo_._LIB_

cubic/3dimension geometry

Aspose.3D.Codec.SkiaSharp

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

Pilz.Simple3DFileParser

Package Description

nilnul._physic_._DLL_

physics fundamentals, including force, mass, gravity, heating, etc

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
24.8.0 1,430 8/30/2024
24.7.1 922 8/7/2024
24.7.0 112 7/31/2024
24.6.0 4,318 7/1/2024
24.5.0 4,862 5/29/2024
24.4.0 2,962 4/29/2024
24.3.0 4,502 3/26/2024
24.2.0 3,356 2/28/2024
24.1.0 4,161 1/30/2024
23.12.0 6,765 12/28/2023
23.11.1 1,256 12/8/2023
23.11.0 6,931 11/29/2023
23.10.0 7,080 10/30/2023
23.9.0 7,536 9/27/2023
23.8.0 9,784 8/25/2023
23.7.0 10,081 7/26/2023
23.6.0 9,274 6/26/2023
23.5.0 6,623 5/26/2023
23.4.0 8,179 4/13/2023
23.3.0 7,767 3/16/2023
23.2.0 7,402 2/14/2023
23.1.0 12,716 1/18/2023
22.12.0 10,665 12/21/2022
22.11.0 11,025 11/17/2022
22.10.0 12,032 10/14/2022
22.9.0 8,060 9/9/2022
22.8.0 22,583 8/3/2022
22.7.0 7,396 7/8/2022
22.6.0 11,700 6/10/2022
22.5.0 13,051 5/9/2022
22.4.0 7,615 4/13/2022
22.3.0 18,702 3/4/2022
22.2.0 9,447 2/7/2022
22.1.0 10,403 1/5/2022
21.12.0 2,636 12/3/2021
21.11.0 9,435 11/11/2021
21.10.0 7,698 10/9/2021
21.9.0 13,615 9/6/2021
21.8.0 15,983 8/6/2021
21.7.0 13,502 7/5/2021
21.6.0 4,466 6/7/2021
21.5.0 11,072 5/6/2021
21.4.0 11,578 4/2/2021
21.3.0 8,511 3/4/2021
21.2.1 11,241 2/14/2021
21.2.0 1,804 2/7/2021
21.1.0 3,607 1/8/2021
20.12.2 3,774 12/10/2020
20.12.0 1,728 12/5/2020
20.11.0 8,569 11/3/2020
20.9.0 4,140 9/4/2020
20.8.0 3,255 8/11/2020
20.7.0 3,274 7/3/2020
20.6.1 2,640 6/16/2020
20.6.0 3,354 6/8/2020
20.5.0 10,283 5/12/2020
20.4.0 4,844 4/9/2020
20.3.0 4,267 3/3/2020
20.2.1 3,578 2/14/2020
20.2.0 2,070 2/10/2020
20.1.0 5,067 1/2/2020
19.12.2 3,654 12/10/2019
19.12.0 1,735 12/9/2019
19.11.0 2,292 11/5/2019
19.10.0 42,394 10/9/2019
19.9.0 2,379 9/9/2019
19.8.0 2,219 8/2/2019
19.7.0 2,365 7/8/2019
19.6.0 2,934 6/5/2019
19.5.0 2,626 5/12/2019
19.4.0 2,190 4/4/2019
19.3.0 2,197 3/8/2019
19.2.0 2,888 2/2/2019
19.1.0 2,077 1/9/2019
18.12.0 2,302 12/6/2018
18.11.0 2,349 11/6/2018
18.10.0 2,216 10/9/2018
18.9.0 2,628 9/6/2018
18.8.0 2,228 8/8/2018
18.7.0 2,609 7/11/2018
18.6.0 3,240 6/11/2018
18.5.0 2,646 5/10/2018
18.4.0 2,527 4/16/2018
18.3.0 2,323 3/14/2018
18.2.0 2,400 2/8/2018
18.1.0 2,567 1/8/2018
17.12.0 2,336 12/8/2017
17.11.0 2,791 11/6/2017
17.10.0 2,279 10/10/2017
17.9.0 2,314 9/7/2017
17.8.0 2,260 8/8/2017
17.7.0 2,350 7/17/2017
17.6.0 2,953 6/5/2017
17.5.0 2,539 5/8/2017
17.4.0 2,445 4/5/2017
17.3.0 2,306 3/6/2017
17.2.0 2,336 2/15/2017
17.1.0 2,380 1/5/2017
16.12.0 2,604 12/4/2016
16.11.0 2,481 11/1/2016
16.9.0 2,335 9/29/2016
2.1.0 2,372 8/30/2016
2.0.0 2,495 8/2/2016
1.7.0 2,329 6/29/2016
1.6.1 2,662 5/26/2016
1.5.0 2,429 4/27/2016
1.4.0 2,444 4/1/2016
1.3.0 2,464 2/23/2016
1.2.0 2,471 12/18/2015
1.1.0 2,628 11/27/2015
1.0.0 2,551 10/26/2015