Working with PointCloud
Decode Mesh
Aspose.3D for .NET allows decoding a mesh from a Draco file directly without building a scene using the Decode
method of DracoFormat
class. The following code snippet shows how to use this functionality:
Encode Mesh
Aspose.3D for .NET allows encoding a sphere mesh to a Draco file directly without building a scene using the Encode
method of DracoFormat
class. The following code snippet shows how to use this functionality:
Encode Sphere as PointCloud
Aspose.3D for .NET allows encoding a sphere mesh to Draco file as a point cloud using the Encode
method of DracoFormat
class. The following code snippet shows how to use this functionality:
Encode Mesh to PLY
Aspose.3D for .NET allows encoding a mesh to PLY file directly without building a scene using the Encode
method of PlyFormat
class. The following code snippet shows how to use this functionality:
Decode Mesh From PLY
Aspose.3D for .NET allows decoding a mesh/point cloud from a PLY file using the Decode
method of PlyFormat
class. The following code snippet shows how to use this functionality:
Export to PLY as PointCloud
Aspose.3D for .NET allows exporting a scene to PLY as PointCloud using the Encode
method of PlyFormat
class. The following code snippet shows how to use this functionality:
Export 3D Scene as Point Cloud
Aspose.3D for .NET allows exporting a 3D scene as PointCloud using PointCloud
property of ObjSaveOptions
class. The following code snippet shows how to use this functionality: