From 27c62c746b2e4aa18d01c16c1603245b094dd661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Tue, 19 Nov 2024 10:38:53 +0100 Subject: [PATCH] chore: fix changelog --- CHANGELOG.md | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ab347ac..666a7dd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,20 +2,9 @@ ## Unreleased -### Fix - -- Fix compiling with `enhanced-determinism` feature enabled. - - This is now checked on CI. - -## v0.17.2 - ### Added - Implement `::to_trimesh` in 2d for `Cuboid` and `Aabb`. -- Implement `Shape::feature_normal_at_point` for `TriMesh` to retrieve the normal of a face, when passing a - `FeatureId::Face`. -- Add `convex_polygons_intersection_points_with_tolerances`, `convex_polygons_intersection_with_tolerances`, and - `intersect_meshes_with_tolerances` that let the user specify tolerances value for the collinearity check. ### Modified @@ -28,6 +17,22 @@ - Removed `IntersectionCompositeShapeShapeBestFirstVisitor` (which had been deprecated for a while): use `IntersectionCompositeShapeShapeVisitor` instead. +## v0.17.3 + +### Fix + +- Fix compiling with `enhanced-determinism` feature enabled. + - This is now checked on CI. + +## v0.17.2 + +### Added + +- Implement `Shape::feature_normal_at_point` for `TriMesh` to retrieve the normal of a face, when passing a + `FeatureId::Face`. +- Add `convex_polygons_intersection_points_with_tolerances`, `convex_polygons_intersection_with_tolerances`, and + `intersect_meshes_with_tolerances` that let the user specify tolerances value for the collinearity check. + ### Fix - Fix some robustness issues in mesh/mesh intersection when parts of both meshes overlap perfectly.