commit 567d10801576ebd9ceab74bb40d132bed56c2903 parent b38528debac9ddb735f6eacc99c27d26e119e758 Author: Christophe Coustet <christophe.coustet@meso-star.com> Date: Mon, 20 Nov 2023 10:52:30 +0100 Merge branch 'release_0.4' into develop Diffstat:
| M | README.md | | | 8 | ++++++++ |
| M | cmake/CMakeLists.txt | | | 2 | +- |
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md @@ -22,6 +22,14 @@ project from the `cmake/CMakeLists.txt` file by appending to the ## Release notes +### Version 0.4 + +- Add scpr_is_vertex_in_component, scpr_is_component_in_component and + scpr_get_vertex_in_component to check for polygons inclusion. +- Add scpr_polygon_is_component_cw and scpr_polygon_reverse_component API calls + to manage polygon orientation. +- Fix OBJ output. + ### Version 0.3 - Add functions to detect polygons intersections. At this stage, only diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -47,7 +47,7 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys Polygon Clipper2) # Define targets ################################################################################ set(VERSION_MAJOR 0) -set(VERSION_MINOR 3) +set(VERSION_MINOR 4) set(VERSION_PATCH 0) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})