commit 8e4c121684fd42b26a25908160f31f23bab8da5c parent 8e0e7a2e804349d87ab4ff06e64e8923a75eaa36 Author: Christophe Coustet <christophe.coustet@meso-star.com> Date: Tue, 21 Nov 2017 16:31:18 +0100 Merge branch 'release_0.3' into develop Diffstat:
| M | README.md | | | 25 | +++++++++++++++++++++++++ |
| M | cmake/CMakeLists.txt | | | 2 | +- |
2 files changed, 26 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md @@ -15,6 +15,31 @@ the install directories of its dependencies. ## Release notes +### Version 0.3 + +- Add the `s3dut_create_thin_cylinder` function that creates a triangulated + cylinder. Both ends can be closed or left open. + +- Add the `s3dut_create_thick_cylinder` function that creates a thick + triangulated cylinder. Both ends can be closed or left open. + +- Add the `s3dut_create_truncated_sphere` function that creates a triangulated + UV sphere (possibly) truncated along the Z axis. Truncated ends can be closed + or left open. + +- Add the `s3dut_create_thick_truncated_sphere` function that creates a thick + triangulated UV sphere (possibly) truncated along the Z axis. Truncated ends + can be closed or left open. + +- Add the `s3dut_create_super_shape` function that creates a triangulated super + shape. + +- Add the `s3dut_create_thick_truncated_super_shape` function that creates a + thick triangulated super shape (possibly) truncated along the Z axis. + Truncated ends can be closed or left open. + +- Increase min number of slices for `s3dut_create_hemisphere` from 2 to 3. + ### Version 0.2 - Add the `s3dut_create_hemisphere` function that creates a triangulated UV diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -37,7 +37,7 @@ include(rcmake_runtime) # Define targets ################################################################################ set(VERSION_MAJOR 0) -set(VERSION_MINOR 2) +set(VERSION_MINOR 3) set(VERSION_PATCH 0) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})