Working with PointCloud
Decode Mesh
Aspose.3D for Python via .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 Python via .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 Python via .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 Python via .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 Python via .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 Python via .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 Python via .NET allows exporting a 3D scene as PointCloud using point_cloud
property of ObjSaveOptions
class. The following code snippet shows how to use this functionality: