You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,12 +9,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Added
11
11
12
-
*`compas_occ.brep.OCCBrep.make_positive` which reverses the winding of a solid if it has negative volume.
12
+
* Added `compas_occ.brep.OCCBrep.make_positive` which reverses the winding of a solid if it has negative volume.
13
+
* Added `compas_occ.brep.OCCBrep.boolean_difference` method in addition to the `from_boolean_difference` constructor.
14
+
* Added `compas_occ.brep.OCCBrep.boolean_intersection` method in addition to the `from_boolean_intersection` constructor.
15
+
* Added `compas_occ.brep.OCCBrep.boolean_union` method in addition to the `from_boolean_union` constructor.
16
+
* Added `compas_occ.conversions.aabb_to_compas` to convert an OCC AABB to a COMPAS box.
17
+
* Added `compas_occ.conversions.obb_to_compas` to convert an OCC OBB to a COMPAS box.
18
+
* Added `compas_occ.brep.OCCBrep.aabb`.
19
+
* Added `compas_occ.brep.OCCBrep.obb`.
13
20
14
21
### Changed
15
22
16
23
* Changed `compas_occ.brep.OCCBrep.heal` to inlude `make_positive`.
17
24
* Changed `compas_occ.brep.OCCBrep.points` to return only unique points instead of repeating points for every repeated occurrence of a vertex within the data structure.
25
+
* Changed `compas_occ.brep.OCCBrep.from_boolean_difference` to also accept a list of `A` shapes.
26
+
* Changed `compas_occ.brep.OCCBrep.from_boolean_intersection` to also accept lists of shapes for `A` and `B`.
27
+
* Changed `compas_occ.brep.OCCBrep.from_boolean_union` to also accept lists of shapes for `A` and `B`.
0 commit comments