New Features
- Contour: is_overlapping, is_supperposing
- Point, Edges and Wires: axial_symmetry
- Surface2D: rotation, rotation_inplace
- Wire2D: bsplinecurve_crossings, bsplinecurve_intersections
- Cylinder: min_distance_to_other_cylinder, is_intersecting_other_cylinder
- New point_distance method for Wire3D
Fixed
- Wire3D.babylonjs
- BSplineSurface3D.merge_with (consider overlapping, intersecting surfaces)
- Wire.extract_primitives (consider point1 & point2 belong to the same primitive)
- Wire.extract_without_primitives (consider the primitives’ order to choose the primitives)
- Contour.shared_primitives_with (consider contours sharing a lot of primitives groups)
- Contour2D.contour_intersections (check if the point is not already in the lis)
- Line.is_between_points (consider point1==point2)
- BSplineCurve2D.split (consider point==start/end)
- Contour3D.bounding_box (use _utd_bounding_box to be defined as a property)
- BSplineSurface3D.grid2d_deformed (add more constraints to compute surface deformation)
- BSplineSurface3D.from_cylindrical_faces (consider **kwargs parameters)
- Duplicated methods cleaned
- triangulation of planar faces
- Wire3D: fix Bounding box
- Wire3D: Bounding box
- Arc2D: primitives bad calculation (arc2d)
- Update plotdata in setup.py
- add some fixes pydocstyle
Performance improvements
- Remove Copy param from movement of primitives and add inplace methods
- Improve union operations
- Return the same result type (a boolean) in Contour.is_sharing_primitives_with
- Add hidden attribute _bounding_rectangle for Contour2D
- Add hidden attribute _length for BSplineCurve2D/3D
- Consider different types of primitives in Wire.wire_intersections/wire_crossings
- Add hidden attribute _length for Edge
Refactorings
- Define _eq_ in Contour (to be used for both 2D and 3D)
- Use Grid2D object in different BSplineSurface3D methods (especially: to_2d_with_dimension)
- Define length in LineSegment (to be used for both 2D and 3D)
- Delete diplicated methods (length and point_at_abscissa) from Contour3D (inherit from Wire)
- Define a Parent class 'Bsplinecurve' to mutulize Bsplinecurve2D/3D methods
- Clean duplicated methods
- Define length in LineSegment (to be used for both 2D and 3D)
- Delete diplicated methods (length and point_at_abscissa) from Contour3D (inherit from Wire)
- Define a Parent class 'Bsplinecurve' to mutulize Bsplinecurve2D/3D methods