Browse our Products

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

Improvements and Changes

KeySummaryCategory
THREEDNET-1430Prepare migration to System.NumericsTask
THREEDAPP-2055Watermark may not working for some meshesBug fixing
THREEDAPP-2065Conversion issueBug fixing
THREEDAPP-2066Bump texture lost when fbx is converted to objBug fixing
THREEDNET-1429Mesh triangulation may fail sometimesBug fixing

API Changes

Added members to class aspose.threed.utilities.BoundingBox:

        # Calculates the absolute largest coordinate value of any contained point.
        def scale()

        # Merge current bounding box with given point
        def merge(pt)

        # Merge current bounding box with given point
        def merge(x, y, z)

        # Check if current bounding box overlaps with specified bounding box. 
        def merge(bb)

        # Check if current bounding box overlaps with specified bounding box. 
        def overlaps_with(box)

        # Check if the point p is inside the bounding box
        def contains(pt)