Skip to content
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
94d0e5b
Introduced Do_intersect_surface_sweep_2
efifogel Dec 25, 2025
ae33c8d
Clean implementation of Surface_sweep_2::do_intersect
efifogel Jan 29, 2026
5bdda0a
add missing license
sloriot Jan 29, 2026
98a924c
missing license
sloriot Jan 29, 2026
25373ec
trailing whitespaces
sloriot Jan 29, 2026
dc64fdb
remove tmp files
sloriot Jan 29, 2026
670d6d9
Apply suggestion from @afabri
afabri Feb 5, 2026
8615bcb
Added missing return type
efifogel Feb 5, 2026
a328685
Replaced "closed" with "consider_end_points"
efifogel Feb 5, 2026
ba038c6
Apply suggestion from @afabri
afabri Feb 5, 2026
f22869a
Changed names of parameters from "closed" => "consider_common_endpoin…
efifogel Feb 5, 2026
d74aa6d
Merge branch 'Ss2-do_intersect-efif' of github.com:efifogel/cgal into…
efifogel Feb 5, 2026
92d79bd
Fixed name of concept (Make_x_monotone_2 => AosTraits::MakeXMonotone_2)
efifogel Feb 5, 2026
b487bb3
Added missing backticks
efifogel Feb 5, 2026
541fd11
Removed requirement of "Core"
efifogel Feb 5, 2026
79897d0
Fixed typo in name of variable
efifogel Feb 5, 2026
150b457
fix warnings
sloriot Feb 9, 2026
da31850
fix compilation error
sloriot Feb 9, 2026
9e15f5a
Removed unused variable
efifogel Feb 10, 2026
b0ee78a
Removed redundant do_intersect() functions and renamed to reduce over…
efifogel Feb 10, 2026
5959247
Merge branch 'main' into Ss2-do_intersect-efif
efifogel Feb 10, 2026
ab49394
Fixed backticks of `true` and `false`
efifogel Feb 10, 2026
c396a7e
fix warning
sloriot Feb 10, 2026
01b3362
add missing include directions
sloriot Feb 10, 2026
19452b5
fix compilation issues detected by the CI
sloriot Feb 11, 2026
b43bbb6
fix dependencies
sloriot Feb 11, 2026
d7c7fb5
Fixed typo
efifogel Feb 13, 2026
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.12...3.31)
project(do_intersect)
find_package(Boost CONFIG ${BOOST_MIN_VERSION} REQUIRED COMPONENTS program_options)
find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt6)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
find_package(CGAL REQUIRED COMPONENTS Core OPTIONAL_COMPONENTS Qt6)
find_package(CGAL OPTIONAL_COMPONENTS Qt6)

because Core is no longer conditional

add_executable(do_intersect do_intersect.cpp)
target_link_libraries(do_intersect PRIVATE CGAL::CGAL CGAL::CGAL_Qt6 CGAL::CGAL_Basic_viewer Boost::program_options)
Loading