-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR for Kinetic Partitioning and Reconstruction feature. * Affected package(s): Kinetic Partitioning and Reconstruction * Issue(s) solved (if any): * Feature/Small Feature (if any): [link](https://cgal.geometryfactory.com/CGAL/Members/wiki/Features/Kinetic_Shape_Partition_3) * Link to compiled documentation: [link](https://cgal.github.io/7198/v0/Manual/packages.html#PkgKineticSpacePartition) * License and copyright ownership: GeometryFactory/Inria **TODO:** - [x] check branch size (for @sloriot)
- Loading branch information
Showing
117 changed files
with
14,085 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
Installation/include/CGAL/license/Kinetic_space_partition.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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_SPACE_PARTITION_H | ||
#define CGAL_LICENSE_KINETIC_SPACE_PARTITION_H | ||
|
||
#include <CGAL/config.h> | ||
#include <CGAL/license.h> | ||
|
||
#ifdef CGAL_KINETIC_SPACE_PARTITION_COMMERCIAL_LICENSE | ||
|
||
# if CGAL_KINETIC_SPACE_PARTITION_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 Kinetic Space Partition package.") | ||
# endif | ||
|
||
# ifdef CGAL_LICENSE_ERROR | ||
# error "Your commercial license for CGAL does not cover this release \ | ||
of the Kinetic Space Partition package. \ | ||
You get this error, as you defined CGAL_LICENSE_ERROR." | ||
# endif // CGAL_LICENSE_ERROR | ||
# endif // CGAL_KINETIC_SPACE_PARTITION_COMMERCIAL_LICENSE < CGAL_RELEASE_DATE | ||
#else // no CGAL_KINETIC_SPACE_PARTITION_COMMERCIAL_LICENSE | ||
# if defined(CGAL_LICENSE_WARNING) | ||
CGAL_pragma_warning("\nThe macro CGAL_KINETIC_SPACE_PARTITION_COMMERCIAL_LICENSE is not defined." | ||
"\nYou use the CGAL Kinetic Space Partition package under " | ||
"the terms of the GPLv3+.") | ||
# endif // CGAL_LICENSE_WARNING | ||
# ifdef CGAL_LICENSE_ERROR | ||
# error "The macro CGAL_KINETIC_SPACE_PARTITION_COMMERCIAL_LICENSE is not defined.\ | ||
You use the CGAL Kinetic Space 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_SPACE_PARTITION_COMMERCIAL_LICENSE | ||
#endif // CGAL_LICENSE_KINETIC_SPACE_PARTITION_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
Kinetic_space_partition/doc/Kinetic_space_partition/Concepts/KineticLCCFaceAttribute.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Copyright (c) 2023 GeometryFactory Sarl (France). | ||
// All rights reserved. | ||
// | ||
// This file is part of CGAL (www.cgal.org). | ||
// | ||
// $URL$ | ||
// $Id$ | ||
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial | ||
// | ||
// | ||
// Author(s) : Sven Oesau, Florent Lafarge, Dmitry Anisimov, Simon Giraudot | ||
|
||
/*! | ||
\ingroup PkgKineticSpacePartitionConcepts | ||
\cgalConcept | ||
The concept `KineticLCCFaceAttribute` refines `CellAttribute` to store additional information for each face related to its associated input polygon. | ||
\cgalHasModelsBegin | ||
\cgalHasModelsBare{\link CGAL::Cell_attribute `Cell_attribute<LCC, CGAL::Kinetic_space_partition_3::Linear_cell_complex_min_items::Face_attribute>`\endlink} | ||
\cgalHasModelsEnd | ||
\sa `CGAL::Kinetic_space_partition_3` | ||
\sa `LinearCellComplexItems` | ||
*/ | ||
|
||
struct KineticLCCFaceAttribute { | ||
/// \name Access Members | ||
/// @{ | ||
/// 3D plane type compatible with `Kinetic_space_partition_3::Intersection_kernel` | ||
typedef unspecified_type Plane_3; | ||
/// Stores the index of the input polygon the provided that support plane of this face. Negative numbers correspond to the values defined in the enum `Kinetic_space_partition_3::Face_support`. | ||
int input_polygon_index; | ||
/// Support plane of the face derived from the corresponding input polygon or from octree nodes used for subdivision. | ||
Plane_3 plane; | ||
/// Does this face overlap with the corresponding input polygon. | ||
bool part_of_initial_polygon; | ||
/// @} | ||
}; |
Oops, something went wrong.