-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright (c) 2024 GeometryFactory. | ||
// 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) : Andreas Fabri | ||
|
||
#ifndef CGAL_POLYGON_REPAIR_UNION_RULE_H | ||
#define CGAL_POLYGON_REPAIR_UNION_RULE_H | ||
|
||
#include <CGAL/license/Polygon_repair.h> | ||
|
||
namespace CGAL { | ||
|
||
namespace Polygon_repair { | ||
|
||
/// \addtogroup PkgPolygonRepairRef | ||
/// @{ | ||
|
||
/*! | ||
Tag class to select the union rule when calling `CGAL::Polygon_repair::repair()`. | ||
*/ | ||
struct Union_rule {}; | ||
|
||
///@} | ||
|
||
} // namespace Polygon_repair | ||
|
||
} // namespace CGAL | ||
|
||
#endif // CGAL_POLYGON_REPAIR_UNION_RULE_H |