cgal
cgal copied to clipboard
The public CGAL repository, see the README below
Shape detection is Very time consuming . ## Issue Details I tried to detect planes from a surface mesh(8,836,081 faces),But it is much slower than on my old Mac book(Intel)....
use `std::enable_if_t`, _v suffix, ....
## Release Management * Affected package(s): PMP * Feature/Small Feature (if any): Interpolated Corrected Curvatures (GSoC2022-WIP)
## Summary of Changes * Introduced a function template, namely, `draw_arrangement(arr)`, that renders arrangements based on the `Basic_viewer_qt` class template. At this point only 2D arrangements on the plane induced...
This PR is a revision of the Region_growing component from the Shape_detection package. It includes multiple small and big changes (including a few breaking changes!): - added named parameters (that...
Create a Polygon_Set_2 Failed! ## Issue Details When I tried to construct a polygon set using the following code, it failed ``` #include #include #include #include #include #include #include typedef...
## Issue Details There is a performance degrade in `CGAL::Mesh_3::internal::init_c3t3_with_features()` since CGAL-5.0 (about a factor 5). This is due to a change of `Compare_distance_3` and the commit responsible for that...
_Please use the following template to help us solving your issue._ ## Issue Details compilation error: char default as unsigned char in ARM platform, cause char type variable compare with...
Code to reproduce the issue: ``` #include typedef CGAL::Exact_predicates_exact_constructions_kernel K; typedef K::Point_3 Point_3; typedef K::Triangle_3 Triangle_3; typedef K::Tetrahedron_3 Tetrahedron_3; int main() { Triangle_3 tri(Point_3(0.191630, -0.331630, -0.370000), Point_3(-0.124185, -0.385815, -0.185000), Point_3(-0.0700000,...
Easier version to maintain that is also fixing #6777 As the implementation is a new one I'm not sure we can backport it to release branches. @lrineau what do you...