star-3dut

Generate meshes of simple geometric shapes
git clone git://git.meso-star.fr/star-3dut.git
Log | Files | Refs | README | LICENSE

commit dbd7b5a554cce04a0fb8f36a53cbbef37a9e0e83
parent aebf3b9eb25da027870544d8d936bb8575e9b6dc
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Mon,  4 Oct 2021 15:44:26 +0200

Merge branch 'release_0.3.3'

Diffstat:
MREADME.md | 7++++++-
Mcmake/CMakeLists.txt | 6+++---
Msrc/s3dut.h | 2+-
Msrc/s3dut_cuboid.c | 2+-
Msrc/s3dut_cylinder.c | 2+-
Msrc/s3dut_mesh.c | 2+-
Msrc/s3dut_mesh.h | 2+-
Msrc/s3dut_sphere.c | 2+-
Msrc/s3dut_super_shape.c | 2+-
Msrc/test_s3dut_cuboid.c | 2+-
Msrc/test_s3dut_cylinder.c | 2+-
Msrc/test_s3dut_hemisphere.c | 2+-
Msrc/test_s3dut_sphere.c | 2+-
Msrc/test_s3dut_super_shape.c | 2+-
Msrc/test_s3dut_thick_cylinder.c | 2+-
Msrc/test_s3dut_thick_truncated_sphere.c | 2+-
Msrc/test_s3dut_thick_truncated_super_shape.c | 2+-
Msrc/test_s3dut_thin_cylinder.c | 2+-
Msrc/test_s3dut_truncated_sphere.c | 2+-
Msrc/test_s3dut_utils.h | 2+-
20 files changed, 27 insertions(+), 22 deletions(-)

diff --git a/README.md b/README.md @@ -15,6 +15,11 @@ the install directories of its dependencies. ## Release notes +### Version 0.3.3 + +- Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has + become obsolete. + ### Version 0.3.2 - Make the `s3dut.h` header compatible with C++. @@ -50,7 +55,7 @@ the install directories of its dependencies. ## License -Copyright (C) 2016, 2017, 2020 |Meso|Star> (<contact@meso-star.com>). +Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (<contact@meso-star.com>). Star-3DUtilityToolkit is free software released under the [OSI](http://opensource.org)-approved GPL v3+ license. You are welcome to redistribute it under certain conditions; refer to the COPYING file for diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2016-2017 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -cmake_minimum_required(VERSION 2.8) +cmake_minimum_required(VERSION 3.1) project(s3dut C) enable_testing() @@ -38,7 +38,7 @@ include(rcmake_runtime) ################################################################################ set(VERSION_MAJOR 0) set(VERSION_MINOR 3) -set(VERSION_PATCH 2) +set(VERSION_PATCH 3) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(S3DUT_FILES_SRC diff --git a/src/s3dut.h b/src/s3dut.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/s3dut_cuboid.c b/src/s3dut_cuboid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/s3dut_cylinder.c b/src/s3dut_cylinder.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/s3dut_mesh.c b/src/s3dut_mesh.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/s3dut_mesh.h b/src/s3dut_mesh.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/s3dut_sphere.c b/src/s3dut_sphere.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/s3dut_super_shape.c b/src/s3dut_super_shape.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_cuboid.c b/src/test_s3dut_cuboid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_cylinder.c b/src/test_s3dut_cylinder.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_hemisphere.c b/src/test_s3dut_hemisphere.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_sphere.c b/src/test_s3dut_sphere.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_super_shape.c b/src/test_s3dut_super_shape.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_thick_cylinder.c b/src/test_s3dut_thick_cylinder.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_thick_truncated_sphere.c b/src/test_s3dut_thick_truncated_sphere.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_thick_truncated_super_shape.c b/src/test_s3dut_thick_truncated_super_shape.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_thin_cylinder.c b/src/test_s3dut_thin_cylinder.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_truncated_sphere.c b/src/test_s3dut_truncated_sphere.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_s3dut_utils.h b/src/test_s3dut_utils.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2016, 2017, 2020 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2016, 2017, 2020, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by