Change authors

This commit is contained in:
Andreas Fabri 2023-11-14 12:29:54 +00:00
parent eb98e2ac54
commit 4f1649e9b7
5 changed files with 65 additions and 4 deletions

View File

@ -0,0 +1,54 @@
// Copyright (c) 2016 GeometryFactory SARL (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org)
//
// $URL$
// $Id$
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
// Author(s) : Andreas Fabri
//
// Warning: this file is generated, see include/CGAL/license/README.md
#ifndef CGAL_LICENSE_KINETIC_SHAPE_PARTITION_3_H
#define CGAL_LICENSE_KINETIC_SHAPE_PARTITION_3_H
#include <CGAL/config.h>
#include <CGAL/license.h>
#ifdef CGAL_KINETIC_SHAPE_PARTITION_3_COMMERCIAL_LICENSE
# if CGAL_KINETIC_SHAPE_PARTITION_3_COMMERCIAL_LICENSE < CGAL_RELEASE_DATE
# if defined(CGAL_LICENSE_WARNING)
CGAL_pragma_warning("Your commercial license for CGAL does not cover "
"this release of the 3D Kinetic Shape Partition package.")
# endif
# ifdef CGAL_LICENSE_ERROR
# error "Your commercial license for CGAL does not cover this release \
of the 3D Kinetic Shape Partition package. \
You get this error, as you defined CGAL_LICENSE_ERROR."
# endif // CGAL_LICENSE_ERROR
# endif // CGAL_KINETIC_SHAPE_PARTITION_3_COMMERCIAL_LICENSE < CGAL_RELEASE_DATE
#else // no CGAL_KINETIC_SHAPE_PARTITION_3_COMMERCIAL_LICENSE
# if defined(CGAL_LICENSE_WARNING)
CGAL_pragma_warning("\nThe macro CGAL_KINETIC_SHAPE_PARTITION_3_COMMERCIAL_LICENSE is not defined."
"\nYou use the CGAL 3D Kinetic Shape Partition package under "
"the terms of the GPLv3+.")
# endif // CGAL_LICENSE_WARNING
# ifdef CGAL_LICENSE_ERROR
# error "The macro CGAL_KINETIC_SHAPE_PARTITION_3_COMMERCIAL_LICENSE is not defined.\
You use the CGAL 3D Kinetic Shape Partition package under the terms of \
the GPLv3+. You get this error, as you defined CGAL_LICENSE_ERROR."
# endif // CGAL_LICENSE_ERROR
#endif // no CGAL_KINETIC_SHAPE_PARTITION_3_COMMERCIAL_LICENSE
#endif // CGAL_LICENSE_KINETIC_SHAPE_PARTITION_3_H

View File

@ -6,7 +6,7 @@ namespace CGAL {
\anchor Chapter_Kinetic_Shape_Partition
\cgalAutoToc
\authors Sven Oesau, Florent Lafarge, Dmitry Anisimov and Simon Giraudot
\authors Sven Oesau and Florent Lafarge
\section Ksp_introduction Introduction
@ -59,4 +59,9 @@ The following example reads a set of polygons from a file and creates a kinetic
*/
\section Ksp_history Design and Implementation History
This package is an implementation of Bauchet et. al \cgalCite{bauchet2020kinetic}.
A proof of concept of the kinetic partition was developed by Simon Giraudot and Dmitry Anisimov.
} /* namespace CGAL */

View File

@ -9,7 +9,7 @@
\cgalPkgPicture{kinetic_logo.png}
\cgalPkgSummaryBegin
\cgalPkgAuthors{Sven Oesau, Florent Lafarge, Dmitry Anisimov, Simon Giraudot}
\cgalPkgAuthors{Sven Oesau and Florent Lafarge}
\cgalPkgDesc{This package implements kinetic shape partition. Based on a set of planar input shapes the bounding box of the input data is split into convex volumes. The complexity of the partition can be adjusted with a single parameter.}
\cgalPkgManuals{Chapter_Kinetic_Shape_Partition, PkgKineticShapePartitionRef}
\cgalPkgSummaryEnd
@ -17,7 +17,7 @@
\cgalPkgShortInfoBegin
\cgalPkgSince{5.6}
\cgalPkgDependsOn{\ref PkgSurfaceMesh, \ref PkgPolygonMeshProcessing, \ref PkgLinearCellComplex, \ref PkgConvexHull2 and \ref PkgPrincipalComponentAnalysisD}
\cgalPkgBib{cgal:olag-kinetic}
\cgalPkgBib{cgal:ol-kinetic}
\cgalPkgLicense{\ref licensesGPL "GPL"}
\cgalPkgShortInfoEnd

View File

@ -13,7 +13,7 @@
#ifndef CGAL_KINETIC_SHAPE_PARTITION_3_H
#define CGAL_KINETIC_SHAPE_PARTITION_3_H
//#include <CGAL/license/Kinetic_shape_partition_3.h>
#include <CGAL/license/Kinetic_shape_partition_3.h>
// Boost includes.
#include <CGAL/boost/graph/named_params_helper.h>

View File

@ -13,6 +13,8 @@
#ifndef CGAL_KINETIC_SHAPE_RECONSTRUCTION_3_H
#define CGAL_KINETIC_SHAPE_RECONSTRUCTION_3_H
#include <CGAL/license/Kinetic_shape_partition_3.h>
#include <CGAL/Kinetic_shape_partition_3.h>
#include <CGAL/KSR_3/GraphCut.h>