Commit Graph

108546 Commits

Author SHA1 Message Date
Laurent Rineau 9db8b7f17b remove extra include 2024-04-26 16:41:01 +02:00
Laurent Rineau c743371ae3 fix duplicate include <version>
And the second one was even very wrong (in the namespace CGAL)
2024-04-26 14:50:09 +02:00
Laurent Rineau b828719c7c Merge remote-tracking branch 'cgal/master' into Triangulation_3-CDT_3-lrineau 2024-04-26 14:40:04 +02:00
Laurent Rineau 94d45552bc Merge pull request #7678 from efifogel/gsoc2023-aos_sphere_demo-denizdiktas
Gsoc2023, stand-alone interactive program that demonstrates 2D arrangements embedded on the sphere
2024-04-25 12:04:54 +02:00
Laurent Rineau d9a8aa26c5 Merge pull request #8131 from afabri/Aos_2-brief_doc-GF
Boolean Set Operations: Fix brief descriptions
2024-04-25 12:04:52 +02:00
Laurent Rineau 3545f004ea Merge pull request #8143 from afabri/Polygon_repair-less_copies-GF
Polygon_repair:: Use move semantics; Add Polygon_2::reserve()
2024-04-25 12:04:50 +02:00
Laurent Rineau 1084b8b524 Merge pull request #8155 from nh2/ply-fix-unused-OutputIteratorValueType
IO: Fix `OutputIteratorValueType` being ignored
2024-04-25 12:04:46 +02:00
Laurent Rineau d2ba8e2f56 Merge pull request #8156 from nh2/kd-tree-shrink-to-fit
kd-tree: Deallocate Point pointer vector after build().
2024-04-25 12:04:44 +02:00
Laurent Rineau 07eb230ed8 Merge pull request #8149 from lrineau/cgallab-cont
Rename Polyhedron demo to CGAL Lab everywhere
2024-04-25 11:30:08 +02:00
Laurent Rineau 5eeeb649e0 remove CGAL::cpp17, useless now that CGAL requires C++17 2024-04-25 09:17:57 +02:00
Laurent Rineau 3148a4665c add CGAL_CAN_USE_CXX20_FORMAT macro for <format> support (C++20) 2024-04-24 17:44:57 +02:00
Laurent Rineau e8be529c8d Revert "add Orientation_3(Point_3, Point_3, Point_3, Vector_3)"
This reverts commit 0db0d5b92a2887e13bcd87437046b1b525ba900b.
2024-04-24 17:08:55 +02:00
Laurent Rineau 0fa27bc857 Merge remote-tracking branch 'cgal/master' into Triangulation_3-CDT_3-lrineau 2024-04-24 16:51:27 +02:00
Laurent Rineau 2cf6303a16 add support for dumping surface mesh after merging facets 2024-04-24 15:49:44 +02:00
Laurent Rineau 9e84694535 reduce filter failures 2024-04-24 15:21:07 +02:00
Laurent Rineau 0315b25fdf do not reinsert all vertices several times 2024-04-24 14:18:34 +02:00
Laurent Rineau 7ca63c2095 reduce symbols names 2024-04-24 14:16:50 +02:00
Laurent Rineau 9c59169b1d remove a possible filter failure, when the target is a vertex 2024-04-24 12:05:01 +02:00
Laurent Rineau f558acab61 make Circulator_from_container somewhat compatible with C++20 ranges 2024-04-24 11:08:35 +02:00
Laurent Rineau 2a2031df3b Rename cgallab to CGALlab
@janetournois (see https://github.com/CGAL/cgal/pull/8149#issuecomment-2066444180
2024-04-23 15:09:51 +02:00
Laurent Rineau 3095a5b412 add Orientation_3(Point_3, Point_3, Point_3, Vector_3) 2024-04-22 15:48:21 +02:00
Laurent Rineau c4165fe5f9 Merge pull request #7439 from MaelRL/PMP-Remove_degen_faces-no-clear-GF
Introduce remove_all_elements(Graph)
2024-04-22 14:54:18 +02:00
Laurent Rineau 1f999bf8fd Merge pull request #7848 from sxntxn/OBJ_read_arbitrary_whitespace
CGAL::IO::Internal::read_OBJ(): allow arbitrary whitespace in "f" lines
2024-04-22 14:54:14 +02:00
Laurent Rineau af1d76e855 Merge pull request #8113 from mbartelsm/patch-1
Update wlop_simplify_and_regularize_point_set.h documentation
2024-04-22 14:54:10 +02:00
Laurent Rineau 3e3eed7f05 Merge pull request #8129 from sloriot/PMP-deterministic_triangulate_faces
Make triangulate_faces deterministic
2024-04-22 14:54:08 +02:00
Laurent Rineau a391e067f7 Merge pull request #8135 from sloriot/Orthtree-const_property_access
Access to property maps is const
2024-04-22 14:54:04 +02:00
Laurent Rineau 67466144bb Merge pull request #8139 from janetournois/Mesh_3-revert_encroachment_loop-jtournois
Mesh_3 - revert encroachment rule modification, and fix infinite refinement
2024-04-22 14:53:50 +02:00
Laurent Rineau bf9f7abce6 fix missing include of <cstdint.h> 2024-04-22 14:24:54 +02:00
Laurent Rineau 845e452f99 fix oformat 2024-04-22 14:23:55 +02:00
Laurent Rineau aad04f71d3 fix CC time_stamper 2024-04-22 14:23:24 +02:00
Sébastien Loriot 3a32338ccf do not use abbreviation 2024-04-22 09:31:19 +02:00
Niklas Hambüchen 3b6a821105 kd-tree: Deallocate Point pointer vector after build().
This

    vector<const Point_d*> data;

is no longer needed after being `.clear()`ed at the end of `build()`.
This can save a good amount of memory, a `Point_d*` on a 64-bit system
is 8 bytes; almost as large as a typical 3-float `Point_d`.

There's no point keeping its capacity, since any call to `build()`
will efficiently `.reserve()` it anyway.
2024-04-22 01:32:16 +02:00
Niklas Hambüchen de41155aaa IO: Fix OutputIteratorValueType being ignored.
The template typename `OutputIteratorValueType` was unused.

This made specifying it (as suggested by the docs) ineffective,
and forbade to use PLY functions e.g. with `boost::function_output_iterator`,
or any other output iterator whose `value_type` is `void`.
2024-04-21 23:55:58 +02:00
Andreas Fabri dfa0a124cd
Update Polygon/include/CGAL/Multipolygon_with_holes_2.h 2024-04-19 11:29:19 +02:00
Andreas Fabri 31018d0a50 Apply the rule of five 2024-04-19 10:13:40 +01:00
Andreas Fabri 29c6a7905f Add is_empty() 2024-04-19 08:10:46 +01:00
Sébastien Loriot ec186667a1 fix warnings 2024-04-19 09:10:06 +02:00
Laurent Rineau 6c04cbd3e2 prepare precompiled demo cgallab.zip 2024-04-18 16:39:34 +02:00
Laurent Rineau 621859b526 Rename Polyhedron demo to CGAL Lab
And announce it in the `CHANGES.md`.
2024-04-18 12:39:30 +02:00
Andreas Fabri 8f1086f050 move a using to avoid doxygen warning 2024-04-18 09:57:47 +01:00
Andreas Fabri 6158ffa63e fix comment in demo 2024-04-17 10:50:13 +01:00
Andreas Fabri 02dd6ad63d Fix warning in test 2024-04-17 08:05:22 +01:00
Andreas Fabri c8c67472b0 Add Mpwh::bbox() 2024-04-16 10:28:19 +01:00
Laurent Rineau eb07187e7d Merge pull request #8099 from lrineau/CGAL_Lab
CGAL Lab
2024-04-16 11:13:01 +02:00
Andreas Fabri 5d6874df85
Apply suggestions from code review
Co-authored-by: Laurent Rineau <Laurent.Rineau@cgal.org>
2024-04-16 10:40:12 +02:00
Andreas Fabri 3effd785c4 Add transform to Polygon_with_holes and Multipolygon_with_holes 2024-04-16 09:05:50 +01:00
Andreas Fabri fcff28f0aa move() -> forward<>() 2024-04-16 08:22:23 +01:00
Andreas Fabri 267ab23599 remove typename 2024-04-16 08:22:05 +01:00
Andreas Fabri 2408df555a Add some using 2024-04-16 07:18:03 +01:00
Andreas Fabri 37740a9a2a Add smaller data set 2024-04-16 06:41:30 +01:00