Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] CGAL 3D constrained Delaunay triangulation #8186

Draft
wants to merge 465 commits into
base: master
Choose a base branch
from

Conversation

lrineau
Copy link
Member

@lrineau lrineau commented May 6, 2024

Summary of Changes

Doc prototype:

This is a work in progress for now. Stay tuned...

TODO list

  • move added files from Triangulation_3/ to CDT_3/

Release Management

  • Affected package(s):
  • Issue(s) solved (if any): fix #0000, fix #0000,...
  • Feature/Small Feature (if any):
  • Link to compiled documentation (obligatory for small feature) wrong link name to be changed
  • License and copyright ownership:

```
2>C:\Program Files\Microsoft Visual Studio\2022\Professional\VC\Tools\MSVC\14.35.32215\include\type_traits(143,19): error C2338: static_assert failed: 'Calling declval is ill-formed, see N4917 22.2.6 [declval]/2.'
2>C:\GitHub\cgal\Triangulation_3\test\Triangulation_3\cdt_3_from_off.cpp(311): message : see reference to function template instantiation 'Segment &&std::declval<Segment>(void) noexcept' being compiled
2>C:\GitHub\cgal\Triangulation_3\test\Triangulation_3\cdt_3_from_off.cpp(311,57): message : see reference to function template instantiation 'std::vector<std::vector<Point,std::allocator<Point>>,std::allocator<std::vector<Point,std::allocator<Point>>>> segment_soup_to_polylines<_Ty&>(Range_of_segments)' being compiled
```
There was a warning:
```
Triangulation_3/include/CGAL/Constrained_Delaunay_triangulation_3.h:1841:5: warning: this statement may fall through [-Wimplicit-fallthrough=]
[build]  1841 |     } // dim 2
[build]       |     ^
```
and for once that was a warning about a real bug!
The files are even repaired on the fiy.
For the moment, I selected:
  - num_vertices < 10000 and
  - "solid"

As for the meaning of "solid", quoting Zhou, Qingnan, et al.
"Mesh arrangements for solid geometry."
ACM Transactions on Graphics (TOG) 35.4 (2016): 1-15.:
> Solid meshes are free of self-intersections, degenerate triangles
> or duplicate triangles, and their generalized winding number field
> is either zero or one.
... instead of applying random selection of buckets.
`Surface_mesh::collect_garbage` uses swaps, and this it modifies the
order of elements of the mesh.
@MaelRL This is the bug of Saddle-1CC.
so that I can introduce new ones more easily
this one is to dump the input surface with the extra Steiner points
of the conforming.

And add a --help option as well.
Check that the triangulation is still Delaunay after the conforming.
that will allows its reuse by the function `insert(Point)`
 - make it const,
 - and simplify the reuse of the API.
*Immediately Invoked Lambda Expression*

Now that CGAL can use C++17 , switch to `std::invoke`
that is more readable that the two small characters `()`
hidden somewhere a few lines below.

With `std::invoke`, we understand straight away that the lambda is
called immediately.

Ref:

https://www.cppstories.com/2016/11/iife-for-complex-initialization/
@lrineau

This comment was marked as outdated.

This comment was marked as outdated.

@lrineau

This comment was marked as outdated.

This comment was marked as outdated.

@lrineau
Copy link
Member Author

lrineau commented May 6, 2024

@lrineau

This comment was marked as outdated.

This comment was marked as outdated.

@lrineau

This comment was marked as outdated.

This comment was marked as outdated.

@lrineau
Copy link
Member Author

lrineau commented May 6, 2024

/build:wip_v2

Copy link

github-actions bot commented May 6, 2024

The documentation is built. It will be available, after a few minutes, here: https://cgal.github.io/8186/wip_v2/Manual/index.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants