Convertir USD en PLY via C#
Exportez USD et d'autres fichiers 3D à l'aide de .NET Framework, .NET Core et Mono
Exporter USD Scène en tant que PLY avec C#
- Charger le fichier USD en utilisant un constructeur de Scène classe2. Appel Scène.Enregistrer méthode
- Passez le nom du fichier de sortie avec l’extension .ply comme premier paramètre
- Spécifiez la valeur du champ
PLY
à partir de Format de fichier classe
3D Conversion de formats API for .NET
Installez à partir de la ligne de commande en tant que nuget install Aspose.3d
ou via la console du gestionnaire de packages de Visual Studio avec Install-Package Aspose.3D
.
Vous pouvez également obtenir le programme d’installation MSI hors ligne ou les DLL dans un fichier ZIP à partir de téléchargements .
C# Code pour la conversion USD à PLY
// charger le USD dans un objet de Scene
var scene = new Aspose.ThreeD.Scene("template.usd");
// enregistrer USD en tant que PLY
scene.Save("output.ply", Aspose.ThreeD.FileFormat.PLY);
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 MorePLY What is PLY File Format?
PLY, Polygon File Format, represents 3D file format that stores graphical objects described as a collection of polygons. The purpose of this file format was to establish a simple and easy file type that is general enough to be useful for a wide range of models. PLY file format comes as ASCII as well as Binary format for compact storage and for rapid saving and loading. The file format is used by different applications that provide support for 3D files reading.
Read More