Sébastien Loriot
12795ba29c
Merge remote-tracking branch 'cgal/5.4.x-branch' into HEAD
2022-07-12 18:21:16 +02:00
Sébastien Loriot
4c7b1ccef4
update link
2022-07-11 11:11:31 +02:00
Sébastien Loriot
b411e262f8
add missing const
2022-06-30 09:22:44 +02:00
Sébastien Loriot
678b9d8148
add some constexpr for constant functions
2022-06-28 16:49:05 +02:00
Andreas Fabri
f23deb3b1d
Remove parameter as it is not used internally
2022-06-01 12:48:17 +01:00
Andreas Fabri
89ef292122
Document node
2022-06-01 11:20:23 +01:00
Andreas Fabri
07e5bc9ec2
Document parameters
2022-05-31 15:34:56 +01:00
Sebastien Loriot
1e9984633d
Merge pull request #6591 from afabri/Poisson-doxygen-GF
...
Fix doxygen warnings
2022-05-26 18:10:39 +02:00
Mael Rouxel-Labbé
3b52e466a8
AABB_tree doc improvements
2022-05-24 10:02:15 +02:00
Andreas Fabri
389ef8ea32
Fix Shape Approximantion (and almost AABB)
2022-05-17 10:51:32 +01:00
Laurent Rineau
2288225448
Massive update of CMake policies to version 3.23
2022-05-06 09:34:35 +02:00
Mael Rouxel-Labbé
1375a0aa9e
Use internal vectors in vector property maps (external causes dangling refs)
2022-03-24 16:10:36 +01:00
Mael Rouxel-Labbé
d355a56d66
Merge remote-tracking branch 'cgal/master' into AABB_tree-Multiple_prim_per_datum-GF
2022-03-24 12:44:28 +01:00
Laurent Rineau
b4b874de71
Merge pull request #6398 from GYuvanShankar/feat2
...
Replaced boost::tuple with std::tuple
2022-03-18 15:58:26 +01:00
G Yuvan Shankar
45193b1487
Replaced boost::tuple with std::tuple
2022-03-10 10:50:06 +05:30
Sébastien Loriot
96fee1cf0c
fixes after merge
2022-01-19 20:53:49 +01:00
Andreas Fabri
a233f10b21
Deal with Arrangement
2022-01-19 07:30:22 +00:00
Andreas Fabri
ed8e003a2b
Deal with AABB_tree
2022-01-18 16:31:03 +00:00
Mael Rouxel-Labbé
df8b4b0405
Avoid superfluous distance computations
2022-01-10 14:52:13 +01:00
Mael Rouxel-Labbé
1981fdd4f0
Factorize implementation of traversal functors for multiple datum trees
2022-01-10 14:51:47 +01:00
Mael Rouxel-Labbé
3498f76ca2
Remove unused variables / typedefs
2021-12-23 12:51:55 +01:00
Mael Rouxel-Labbé
0f965fd42b
Add a triangle AABB tree which can use multiple primitives to cover data
2021-11-10 14:22:46 +01:00
Sébastien Loriot
ab48f63e30
update latest cmake version tested
2021-11-09 10:58:47 +01:00
Sébastien Loriot
58181afcdb
remove useless include directives
2021-11-09 10:16:12 +01:00
Mael Rouxel-Labbé
8166579e55
Merge branch 'PM-Fix_pmaps_reference_types-GF' into PM-Fix_pmaps_reference_types_master-GF
2021-10-11 19:58:07 +02:00
Mael Rouxel-Labbé
590ddf8015
Various fixes for pmaps:
...
- Use `value_type` when the returned type is not a reference
- Enforce `reference = value_type` if the returned type is not
a reference (to avoid `typename PM::reference r = get(m, k)`,
which will take a ref to a temporary if the `reference`
typedef is an actualy reference)
- Do not use `put_get_helper` if the property map is not a `lvalue`
**mutable** property map: the `put()` is `map[k] = v`, which
is broken if `operator[]` does not return a reference
- The concept `boost::lvalue_property_map_tag` requires `operator[](key)`,
not a reference in `get(map, key)`. You can have a readable property map
returning a reference through its `get(map, key)`, but if there is
no `operator[]`, it's just a `boost::readable_property_map_tag`
- Some const correctness to avoid copying maps with state
or heavy keys in `get(map, key)` / `put(map, key, value)`
- Base the category of a wrapping pmap on what it offers instead
of just forwarding the base property map's category
- Tried to do something like mutable lvalue pmap:
* `value_type& operator[](key&)`
* `ref get(map, const key&)`
* `put(map, const key&, const value_type&)`
and non-mutable lvalue pmap:
* `const value_type& operator[](const key&)`
* `ref get(map, const key&)`
but not everything fits properly...
2021-10-08 15:38:47 +02:00
Mael Rouxel-Labbé
1660611e76
Use local typenames directly
2021-10-08 13:23:38 +02:00
Mael Rouxel-Labbé
df560987a6
Whitespace & cleaning changes
2021-10-08 12:13:43 +02:00
Sébastien Loriot
1857a25d28
Merge remote-tracking branch 'cgal/master' into CGAL_data-moving_files
2021-10-06 13:50:31 +02:00
Sébastien Loriot
8350dea94a
char* -> std::string
2021-10-04 09:49:24 +02:00
Sébastien Loriot
47028cd184
automatically move data files in data dir + update paths
...
Done for OFF/OBJ/STL/XYZ/PWN/PLY
2021-10-04 09:42:49 +02:00
Sébastien Loriot
250b8e9161
remove ./ prefix
2021-10-04 09:32:04 +02:00
Mael Rouxel-Labbé
2dda84c9b3
Minor code cleaning
2021-09-28 15:34:25 +02:00
Mael Rouxel-Labbé
b9741aa6bb
Fix AABBGeomTraits's intersection pred/cons requirements (+ misc cleaning)
2021-09-28 15:32:06 +02:00
Laurent Rineau
e5ab9202f5
Merge pull request #4229 from gdamiand/CGAL_data-gdamiand
...
Regroup data: scripts and function updates
2021-09-23 16:14:11 +02:00
Sebastien Loriot
fd94f61198
Merge pull request #5785 from maxGimeno/Google-readability-casting-maxGimeno
...
Clang-tidy: google-readability-casting
2021-09-02 15:46:54 +02:00
Sebastien Loriot
e5279db7fb
Merge pull request #5777 from MaelRL/AABB-Dont_call_global_do_intersect-GF
...
Misc fixes for Intersections_3 + related
2021-09-02 15:44:53 +02:00
Maxime Gimeno
ea165d503f
Run on AABB_tree
2021-08-31 11:44:54 +02:00
Sébastien Loriot
98e471849b
moving files from internal to PKG/internal
2021-08-26 11:33:39 +02:00
Laurent Rineau
5759a800e3
Merge pull request #5705 from maxGimeno/CGAL-Clean_up_boost_versions-maxGimeno
2021-07-28 10:14:38 +02:00
Sébastien Loriot
f153a1ed3e
Merge remote-tracking branch 'cgal/master' into HEAD
2021-07-22 13:15:22 +02:00
Maxime Gimeno
a3d1765ab4
Merge remote-tracking branch 'cgal/master' into CGAL-Clean_up_boost_versions-maxGimeno
2021-07-19 14:18:40 +02:00
Dmitry Anisimov
aaf55dbaa0
Merge remote-tracking branch 'maxGimeno/PMP-compare_faces_from_meshes-maxGimeno' into gsoc2019-PMPHDist-martinskrodzki
2021-06-18 14:45:24 +02:00
Mael Rouxel-Labbé
5880dc7195
Replace global function CGAL::do_intersect() call
2021-06-14 11:28:18 +02:00
Maxime Gimeno
393ae7dae6
Clean-up boost_version reqs
2021-05-12 15:03:53 +02:00
Sébastien Loriot
fb6f703b55
IO namespace for files in IO directories
2021-05-04 14:36:06 +02:00
Dmitry Anisimov
4ce1370043
tested group traversal, its sequential version is slower due to more candidate triangles
2021-04-28 11:37:49 +02:00
Sébastien Loriot
87174f3007
remove useless check (go further is updated with primitives not bbox)
2021-04-28 08:37:08 +02:00
Sébastien Loriot
1a9a821193
add a way to get a direct access to primitive in a box when below a given nb of primitives
2021-04-27 19:24:07 +02:00
Dmitry Anisimov
a2f460c9d6
Merge branch 'master' into gsoc2019-PMPHDist-martinskrodzki
2021-04-27 18:37:32 +02:00