Aspose.3D
17.6.0
Aspose.3D is a class library for working with 3D files. It allows developers to create/manipulate/render 3D scene and work with FBX,STL,OBJ,3DS,U3D,DAE,PDF,DRC,GLTF files. It allows you to open files and manipulate the elements in the 3D scene, from line,mesh,nurbs curve, to more complex elements animation, and then export to FBX ASCII, FBX binary, STL ASCII, STL binary, Collada, Wavefront .obj, 3DS, PDF formats, glTF, glTF2, Google Draco.
See the version list below for details.
Install-Package Aspose.3D -Version 17.6.0
dotnet add package Aspose.3D --version 17.6.0
<PackageReference Include="Aspose.3D" Version="17.6.0" />
paket add Aspose.3D --version 17.6.0
Release Notes
This page contains release notes for Aspose.3D for .NET 17.6.
Other Improvements and Changes
Key Summary Category
THREEDNET-257 Export 3D scene into GLTF 2.0 ASCII files
New feature
THREEDNET-258 Export 3D scene into GLTF 2.0 Binary files New feature
THREEDNET-264 Models has tangent but has no bi-normal will not render correctly Bug
THREEDNET-267 Materials in Collada files may not be loaded correctly. Bug
Public API and Backwards Incompatible Changes
See the list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.3D for .NET. If you have concerns about any change listed, please raise it on the Aspose.3D support forum.
Adds MaterialConverter Member to Aspose.ThreeD.Formats.GLTFSaveOptions Class
GLTF 2.0 only supports PBR materials, Aspose.3D will internally convert non-PBR materials into PBR materials before exporting into GLTF 2.0 (the materials in the scene will remain unchanged during the export), and the user can provide custom convert function to override the default behavior.
This code example demonstrates how to convert material to PBR material, and then saves 3D scene in the GLTF format:
.NET, C#
var s = new Scene();
var box = new Box();
s.RootNode.CreateChildNode("box1", box).Material = new PhongMaterial() {DiffuseColor = new Vector3(1, 0, 1)};
GLTFSaveOptions opt = new GLTFSaveOptions(FileFormat.GLTF2);
//Custom material converter to convert PhongMaterial to PbrMaterial
opt.MaterialConverter = delegate(Material material)
{
PhongMaterial m = (PhongMaterial) material;
return new PbrMaterial() {Albedo = new Vector3(m.DiffuseColor.x, m.DiffuseColor.y, m.DiffuseColor.z)};
};
s.Save("test.gltf", opt);
Usage Examples
Please check the list of help topics added or updated in the Aspose.3D Wiki docs:
https://docs.aspose.com/display/3dnet/Aspose.3D+for+.NET+17.6+Release+Notes
Dependencies
This package has no dependencies.
Used By
NuGet packages (2)
Showing the top 2 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.
|
|
Conholdate.Total
Conholdate.Total for .NET is a complete package to work with a large number of file formats from Microsoft Word, Excel, PowerPoint, Outlook, Project, Visio, Adobe Acrobat, Illustrator, Photoshop, AutoCAD, OpenOffice and many more.
Conholdate.Total for .NET allows you to use any API released under Aspose and GroupDocs for .NET in order to create, convert, read, edit, update and print popular document formats. Moreover, you may view, annotate, watermark, assemble, classify, search, redact, parse, merge and compare documents without needing to install the native applications.
Conholdate.Total for .NET also includes specialized APIs to read and create barcodes, extract text from images using OCR as well as extract human marked data from questioners, surveys, quizzes, MCQ papers and feedback forms.
|
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
21.1.0 | 204 | 1/8/2021 |
20.12.2 | 417 | 12/10/2020 |
20.12.0 | 145 | 12/5/2020 |
20.11.0 | 1,299 | 11/3/2020 |
20.9.0 | 1,491 | 9/4/2020 |
20.8.0 | 754 | 8/11/2020 |
20.7.0 | 638 | 7/3/2020 |
20.6.1 | 473 | 6/16/2020 |
20.6.0 | 1,409 | 6/8/2020 |
20.5.0 | 1,042 | 5/12/2020 |
20.4.0 | 985 | 4/9/2020 |
20.3.0 | 1,614 | 3/3/2020 |
20.2.1 | 885 | 2/14/2020 |
20.2.0 | 516 | 2/10/2020 |
20.1.0 | 2,016 | 1/2/2020 |
19.12.2 | 601 | 12/10/2019 |
19.12.0 | 172 | 12/9/2019 |
19.11.0 | 760 | 11/5/2019 |
19.10.0 | 389 | 10/9/2019 |
19.9.0 | 565 | 9/9/2019 |
19.8.0 | 542 | 8/2/2019 |
19.7.0 | 636 | 7/8/2019 |
19.6.0 | 831 | 6/5/2019 |
19.5.0 | 808 | 5/12/2019 |
19.4.0 | 459 | 4/4/2019 |
19.3.0 | 585 | 3/8/2019 |
19.2.0 | 1,148 | 2/2/2019 |
19.1.0 | 390 | 1/9/2019 |
18.12.0 | 459 | 12/6/2018 |
18.11.0 | 674 | 11/6/2018 |
18.10.0 | 425 | 10/9/2018 |
18.9.0 | 917 | 9/6/2018 |
18.8.0 | 443 | 8/8/2018 |
18.7.0 | 809 | 7/11/2018 |
18.6.0 | 709 | 6/11/2018 |
18.5.0 | 846 | 5/10/2018 |
18.4.0 | 688 | 4/16/2018 |
18.3.0 | 580 | 3/14/2018 |
18.2.0 | 602 | 2/8/2018 |
18.1.0 | 756 | 1/8/2018 |
17.12.0 | 503 | 12/8/2017 |
17.11.0 | 912 | 11/6/2017 |
17.10.0 | 469 | 10/10/2017 |
17.9.0 | 585 | 9/7/2017 |
17.8.0 | 490 | 8/8/2017 |
17.7.0 | 502 | 7/17/2017 |
17.6.0 | 1,174 | 6/5/2017 |
17.5.0 | 755 | 5/8/2017 |
17.4.0 | 599 | 4/5/2017 |
17.3.0 | 576 | 3/6/2017 |
17.2.0 | 580 | 2/15/2017 |
17.1.0 | 631 | 1/5/2017 |
16.12.0 | 822 | 12/4/2016 |
16.11.0 | 610 | 11/1/2016 |
16.9.0 | 522 | 9/29/2016 |
2.1.0 | 523 | 8/30/2016 |
2.0.0 | 559 | 8/2/2016 |
1.7.0 | 585 | 6/29/2016 |
1.6.1 | 772 | 5/26/2016 |
1.5.0 | 575 | 4/27/2016 |
1.4.0 | 617 | 4/1/2016 |
1.3.0 | 662 | 2/23/2016 |
1.2.0 | 697 | 12/18/2015 |
1.1.0 | 628 | 11/27/2015 |
1.0.0 | 668 | 10/26/2015 |