Skip to content

Added the list of valid pairs #8762

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Kernel_23/doc/Kernel_23/Kernel_23.txt
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,20 @@ list of all possible resulting geometric objects. The exact result type of an in
can be specified through the placeholder type specifier `auto`.


The `CGAL::intersection()` function supports the following combinations of parameters:
- Point_2 and Circle_2
- Point_3 and Sphere_3
- Line_2 and Circle_2
- Line_3 and Sphere_3
- Segment_2 and Circle_2
- Segment_3 and Sphere_3
- Ray_2 and Circle_2
- Ray_3 and Sphere_3
- Triangle_2 and Circle_2
- Triangle_3 and Sphere_3

Additional overloads are provided for the type Point_2 combined with any other type in the above list.
Similarly, additional overloads are provided for the type Point_3 combined with any other type in the above list.

Example
-------
Expand Down