Browse our Products

Aspose.3D for Python via .NET 25.8 Release Notes

Improvements and Changes

KeySummaryCategory
THREEDNET-929Add PCD import supportSub-task
THREEDNET-1708USDA Export supportNew Feature
THREEDNET-1701Allow user to check if mesh is manifoldImprovement

API Changes

Added members to class aspose.threed.entities.Mesh:

	def is_manifold(self) -> bool:
		...

Check if current mesh is a manifold mesh. This function will not cache the manifold calculation result.

Added members to class aspose.threed.entities.PointCloud:

	@property
	def dimension(self) -> Optional[aspose.threed.utilities.Vector2]
	@dimension.setter
	def dimension(self, value : Optional[aspose.threed.utilities.Vector2]) -> None

If a dimension value is present for the point cloud, it indicates an organized point cloud. Without a specified size, it is considered an unorganized point cloud. Organized point cloud means it has an image-like structure.