Commit Graph

101 Commits

Author SHA1 Message Date
Laurent Rineau b190978599 fix the static assertions
... by using Boost containers instead of those from the STL.
2025-04-30 11:32:18 +02:00
Laurent Rineau 0ec75e54ee Merge remote-tracking branch 'refs/remotes/lrineau/Triangulation_3-CDT_3-lrineau' into pr/lrineau/8186 2025-04-29 17:41:39 +02:00
Laurent Rineau 1c4e24621c fix the assertions about nothrow_movable in CDT_3
using Boost implementation of `unordered_map` instead of the std:: version.
2025-04-29 17:41:30 +02:00
Jane Tournois da73a5db7f fix type name 2025-04-29 15:58:08 +02:00
Laurent Rineau 9f38c6887f fix doc 2025-04-29 15:47:47 +02:00
Laurent Rineau 958d50eb20 more debug message 2025-04-29 15:47:41 +02:00
Jane Tournois c95bcb5cb7 wip review Mael 2025-04-29 15:17:54 +02:00
Laurent Rineau 89752983f7 protect debug messages with the flag debug_missing_region() 2025-04-29 13:40:44 +02:00
Laurent Rineau 13f8e779e0 fix unused variable 2025-04-28 21:00:52 +02:00
Laurent Rineau c0abf42c57 add CGAL::draw for CCDT_3 2025-04-28 17:07:54 +02:00
Laurent Rineau 58bc7b1a76 always use `auto` for the traits functors 2025-04-28 17:07:54 +02:00
Sébastien Loriot 946472addd fix license checking headers 2025-04-24 20:32:59 +02:00
Laurent Rineau c3bf6f945b Andreas is right: it should be `int` 2025-04-24 12:57:51 +02:00
Laurent Rineau 17c749f44f face_patch_map for polygon soups 2025-04-24 12:56:33 +02:00
Andreas Fabri 4055ff4f94 Replace std_size_t with CDT_3_signed_index 2025-04-11 12:00:47 +01:00
Andreas Fabri 235a9426bb Use CDT_3_signed_index 2025-04-11 10:15:03 +01:00
Andreas Fabri fed7f0bf0d Conditional #include 2025-04-11 09:55:33 +01:00
Sébastien Loriot 261e80f029 add explicit CXX20 2025-04-11 10:49:56 +02:00
Andreas Fabri eeb4decd2a Use named parameter helper 2025-04-11 10:46:23 +02:00
Andreas Fabri 14cfb4d104 Use std::function to avoid VC2017 error 2025-04-11 08:48:37 +01:00
Andreas Fabri 63b8eb9e30 Change anchors 2025-04-08 10:25:22 +01:00
Andreas Fabri 9009ed5c8d clang does not fully support <concepts> 2025-04-08 09:51:18 +01:00
Jane Tournois 620ae7d697 remove tab 2025-04-03 14:12:26 +02:00
Jane Tournois f2d0b189cc typo & todo 2025-04-03 12:54:41 +02:00
Jane Tournois 68b6b6f001 explicitely add default type for Tr, and a public typedef for Triangulation
the default type was already there but hidden in a fwd declaration

+ document convert_to_triangulation_3()
2025-04-03 12:11:49 +02:00
Laurent Rineau cbad336cad fix issue #8811 2025-04-02 18:40:24 +02:00
Laurent Rineau 4e9ecde5e1 merge my work into cgal/Triangulation_3-CDT_3-lrineau 2025-04-02 15:19:41 +02:00
Laurent Rineau fc6e62861f change the way to compute the default CDT type 2025-04-02 15:10:59 +02:00
Jane Tournois 8873d24b44 add missing CGAL:: (compilation error in external project) 2025-04-01 15:36:15 +02:00
Laurent Rineau 398df2bf2a improve Conforming_constrained_Delaunay_triangulation_cell_base_3 2025-03-31 10:09:45 +02:00
Laurent Rineau f0cae98d57 remove unused named parameters pack 2025-03-29 01:53:21 +01:00
Laurent Rineau b6cb3b380c fix indentation 2025-03-27 10:50:59 +01:00
Laurent Rineau b4db567119 rename Constraint_id (because that name refers to 2D constraints) 2025-03-27 10:50:58 +01:00
Sébastien Loriot f52a6b843b fix some warnings 2025-03-20 20:37:00 +01:00
Jane Tournois 493b78a6d7 rename functions, remove useless duplicate, and order switch/case by vertex dim 2025-03-17 13:07:56 +01:00
Jane Tournois fcb637bff5 prepare triangulation for tetrahedral_isotropic_remeshing() 2025-03-14 14:48:42 +01:00
Sébastien Loriot c65ed45431 fix warning and avoid a copy 2025-02-14 14:11:02 +01:00
Sébastien Loriot c443bbb0cb temporarily disable the static_assert's 2025-02-13 15:38:34 +01:00
Sébastien Loriot 9c7bb82e5d relates and groups are somehow incompatible as the doc is then supposed
to be move in the class
2025-02-13 10:43:44 +01:00
Sébastien Loriot bedd092f67 workaround doc issues 2025-02-13 10:18:48 +01:00
Laurent Rineau 9572c603d5 fix the static assertions about nothrow-movable
```
/mnt/testsuite/include/CGAL/Conforming_constrained_Delaunay_triangulation_3.h:543:23: error: static assertion failed
  543 |   static_assert(CGAL::is_nothrow_movable_v<CDT_3_impl>);
      |                 ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```
2025-02-12 13:53:18 +01:00
Laurent Rineau 87e979160f min/max issues 2025-02-12 13:38:49 +01:00
Laurent Rineau 39102f0449 more check of the use of `<format>` 2025-02-12 11:45:10 +01:00
Laurent Rineau a2571bbab8 Merge remote-tracking branch 'lrineau/CGAL-followup_PR_8170-lrineau' into Triangulation_3-CDT_3-lrineau 2025-02-11 18:26:52 +01:00
Laurent Rineau cc6a40564b improve read_polygon_mesh_for_cdt_3
I have added comments on the block of code that triangulates the polygon on-the-fly
2024-12-06 16:07:31 +01:00
Laurent Rineau 05d9329502 add an explicit return section (discussion with Andreas) 2024-12-06 16:05:05 +01:00
Laurent Rineau ce7e271800 add a ref to does_triangle_soup_self_intersect (suggested by Mael) 2024-12-06 16:04:27 +01:00
Laurent Rineau 49b6ced8cc commit Jane's suggestion of wording
Co-authored-by: Jane Tournois <janetournois@users.noreply.github.com>
2024-12-05 16:35:37 +01:00
Laurent Rineau b54b80f412 fix and improvement during peer-review with Jane 2024-12-05 16:13:16 +01:00
Laurent Rineau ed2e57e262 factorize a paragraph to an \include[doc] 2024-12-04 11:19:24 +01:00