Commit Graph

1863 Commits

Author SHA1 Message Date
Laurent Rineau 8eefb7f173 Merge branch 'master' into pr/lrineau/8273 2025-02-07 16:10:52 +01:00
Sven Oesau bf027e210f adding documentation 2025-02-06 16:16:48 +01:00
Laurent Rineau e5001d1a50 update our CMake version 3.18...3.31
That will suppress the warnings about `CMP0167` (from CMake 3.30):

```
CMake Warning (dev) at cmake/modules/display-third-party-libs-versions.cmake:37 (find_package):
  Policy CMP0167 is not set: The FindBoost module is removed.  Run "cmake
  --help-policy CMP0167" for policy details.  Use the cmake_policy command to
  set the policy and suppress this warning.
```
2025-02-04 14:32:37 +01:00
Sébastien Loriot b19515e1f8 Merge remote-tracking branch 'cgal/6.0.x-branch' 2025-01-24 08:09:18 +01:00
Sébastien Loriot 7720caa9dc Merge remote-tracking branch 'cgal/5.6.x-branch' into HEAD 2025-01-24 08:08:33 +01:00
albert-github 8824b917ae Update Documentation/doc/resources/1.8.13/cgal_stylesheet.css
Co-authored-by: Sebastien Loriot <sloriot.ml@gmail.com>
2025-01-24 08:04:50 +01:00
albert-github 8a5cbddf72 Update Documentation/doc/resources/1.8.13/cgal_stylesheet.css
Co-authored-by: Sebastien Loriot <sloriot.ml@gmail.com>
2025-01-24 08:04:50 +01:00
albert-github 3aa58ef5fb Update Documentation/doc/resources/1.8.13/cgal_stylesheet.css
Looks like it is not necesary for the 1.8.13 version

Co-authored-by: Sebastien Loriot <sloriot.ml@gmail.com>
2025-01-24 08:04:50 +01:00
albert-github e36065c773 Correct icon sizes
Correct icon sizes
2025-01-24 08:04:50 +01:00
Mael Rouxel-Labbé e86842189e Merge remote-tracking branch 'cgal/master' into Hyperbolic_surface_triangulation_2-dubois 2025-01-23 09:53:45 +01:00
Sébastien Loriot d8106aab4b we now use ctest for testing + extra clean up 2025-01-22 11:42:50 +01:00
Sébastien Loriot e4adcceaad more clean up 2025-01-21 11:30:48 +01:00
Andreas Fabri 859479f681 Merge remote-tracking branch 'cgal/master' into Frechet-dev 2025-01-20 15:47:37 +00:00
Mael Rouxel-Labbé eedb2edb8f Rename to Triangulation_on_hyperbolic_surface_2 2025-01-17 15:02:49 +01:00
albert-github 7cf6793117 issue #8689 Regression documentation build
- compare doxygen version with the available directories on disk and (try to) use the most appropriate one
- give a warning when there are more directories than expected (already present), though `FATAL` should probably be `FATAL_ERROR` though the latest will give problems when adding a new version to the directory list for testing. Changed the message to a `WARNING`
2025-01-17 10:31:54 +01:00
Laurent Rineau e03ba91f54 Boost >= 1.74 is now required 2025-01-13 11:36:05 +01:00
Sébastien Loriot 36d98614df Merge remote-tracking branch 'cgal/6.0.x-branch' 2025-01-09 19:23:19 +01:00
POUGET Marc c571930697 Mael review part 1 2025-01-06 14:07:45 +01:00
albert-github 0c338ca736 Doxygen incompatibility in respect to `FULL_SIDEBAR` setting
Due to an incompatibility change in doxygen (see 2a62c19755 (commitcomment-150534822)) it is necessary to add the setting for `FULL_SIDEBAR` to the setup of the CGAL documentation.
2024-12-25 12:23:59 +01:00
Laurent Rineau 5eddbc26ae fix build with Doxygen 1.10 and later 2024-12-17 15:48:59 +01:00
Laurent Rineau a269cd37a6 cgal_stylesheet.css must be taken from ../Manual
Revert "Merge pull request #8331 from albert-github/feature/bug_cgal_stylesheet"

This reverts commit 62de71bcfb, reversing
changes made to 3b4349cfbb.
2024-12-17 15:48:59 +01:00
Laurent Rineau ff191167f5 fix build with Doxygen 1.10 and later 2024-12-16 18:17:11 +01:00
Laurent Rineau 61b8ee09d9 cgal_stylesheet.css must be taken from ../Manual
Revert "Merge pull request #8331 from albert-github/feature/bug_cgal_stylesheet"

This reverts commit 62de71bcfb, reversing
changes made to 3b4349cfbb.
2024-12-16 16:32:28 +01:00
Sébastien Loriot b32558b87e Merge remote-tracking branch 'cgal/master' into gsoc2022-isosurface 2024-12-16 11:47:34 +01:00
Sebastien Loriot 68705288b0
LaTeX compliance for formulas and errors in bibliography (#8636)
Correction of incorrect usage of LaTeX in formulas and bibliography
altough MatHJax and bibtex.pl doesn't always signal it.
- Incorrect biblio entry (missing `,` and `}`)
  - Documentation/doc/biblio/geom.bib
- `&nbsp` is not correct LaTeX has to be `~`
-
Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt
  - Documentation/doc/Documentation/Developer_manual/Chapter_intro.txt
- Incorrect formula regarding usage of `\left` and `\right` (also
signaled by MathJax
-
Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt
- `DeclareMathOperator` is a command that should be in the preamble,
alternatively the command `\operatorname` can be used explicitly (as
done here as it is only used once)
-
Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/Kinetic_surface_reconstruction.txt
- Latex has problems with `_` in a `text...` command so it should be
escaped though this gives problems with MathJax hence the extra hook.
MathJax reference:
https://groups.google.com/g/mathjax-users/c/wSh6-hSIUpQ/m/KmzZhQQGslgJ
  - Documentation/doc/resources/1.10.0/CGAL_mathjax.js
  - Documentation/doc/resources/1.8.13/CGAL_mathjax.js
  - Documentation/doc/resources/1.9.6/CGAL_mathjax.js
  - Weights/include/CGAL/Weights/authalic_weights.h
2024-12-10 16:28:03 +01:00
Andreas Fabri 30c2ea0697 Add bibtex entry and \cite 2024-12-09 14:07:22 +00:00
Andreas Fabri 07e98a69b4 Merge remote-tracking branch 'cgal/master' into Frechet-dev 2024-12-09 07:45:25 +00:00
Laurent Rineau 196f00c34b Merge remote-tracking branch 'cgal/master' into Triangulation_3-CDT_3-lrineau 2024-12-04 11:27:05 +01:00
albert-github 36f6a36dac Errors in bibliography and incorrect usage of `\f[` command
- The `&` in the bibliography has to be escaped
- the doxygen command `\f[` should not be used to directly change the environment, for this the doxygen command `\f{` exists.
2024-12-02 15:48:48 +01:00
albert-github 5c98f77ba2 LaTeX compliance for formulas and errors in bibliography
Correction of incorrect usage of LaTeX  in formulas and bibliography altough MatHJax and bibtex.pl doesn't always signal it.
- Incorrect biblio entry (missing `,` and `}`)
  - Documentation/doc/biblio/geom.bib
- `&nbsp` is not correct LaTex has to be `~`
  - Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt
  - Documentation/doc/Documentation/Developer_manual/Chapter_intro.txt
- Incorrect formula regarding usage of `\left` and `\right` (also signaled by MathJax
  - Arrangement_on_surface_2/doc/Arrangement_on_surface_2/Arrangement_on_surface_2.txt
- `DeclareMathOperator` is a command that should be in the preamble, alternatively the command `\operatorname` can be used explicitly (as done here as it is only used once)
  - Kinetic_surface_reconstruction/doc/Kinetic_surface_reconstruction/Kinetic_surface_reconstruction.txt
- Latex has problems with `_` in a `text...` command so it should be escaped though this gives problems with MathJax hence the extra hook.
  MathJax reference: https://groups.google.com/g/mathjax-users/c/wSh6-hSIUpQ/m/KmzZhQQGslgJ
  - Documentation/doc/resources/1.10.0/CGAL_mathjax.js
  - Documentation/doc/resources/1.8.13/CGAL_mathjax.js
  - Documentation/doc/resources/1.9.6/CGAL_mathjax.js
  - Weights/include/CGAL/Weights/authalic_weights.h
2024-12-02 14:58:15 +01:00
Sébastien Loriot 4ceec7daa5 Merge remote-tracking branch 'cgal/6.0.x-branch' 2024-11-20 08:54:54 +01:00
Sébastien Loriot 3f1759df88 Merge remote-tracking branch 'cgal/5.6.x-branch' 2024-11-20 08:53:38 +01:00
Sébastien Loriot c050bb15a3 Merge remote-tracking branch 'cgal/master' 2024-11-15 11:41:07 +01:00
Sven Oesau d3ae3b4fda documented Eigen3 version requirement of Ceres
documented use of OSQP in Shape Regularization package
2024-11-14 10:39:24 +01:00
Laurent Rineau 02632017a5 Merge remote-tracking branch 'cgal/master' into Triangulation_3-CDT_3-lrineau 2024-11-12 12:33:37 +01:00
Sébastien Loriot a02519677a Merge pull request #8400 from afabri/CGAL-remove_RS-GF
Algebraic_kernel_d: Remove RS
2024-11-05 17:06:19 +01:00
Sebastien Loriot 1690619625
CGAL: Modernize CMakeLists.txt (#8528)
## Summary of Changes

- Changed `PUBLIC` to `PRIVATE`  in the `target_link_libraries()`
- ~~Link against `Boost::<COMPONENT>`~~ as we do more than just linking
and must use the `CGAL::_.._support`
- Use `target_compile_definitions()` and `add_compile_definitions()`

More to be done.

## Release Management

* Affected package(s): all
* Issue(s) solved (if any): fix one item of  #4815
* License and copyright ownership: unchanged
2024-10-31 10:32:25 +01:00
Laurent Rineau 8e4ee1e45d update versions in menu_version.js
[skip ci]
2024-10-22 15:13:49 +02:00
Sébastien Loriot ce2fcc0feb Merge pull request #8522 from albert-github/feature/issue_8515_2
issue #8515 Spelling mistakes found checking `en-GB` to `en-US`
2024-10-21 19:17:40 +02:00
Andreas Fabri 2d25b1077f Merge remote-tracking branch 'cgal/master' into CGAL-remove_RS-GF 2024-10-21 13:34:12 +01:00
Sébastien Loriot 619875392c Merge branch 'gsoc2023' into master 2024-10-18 14:33:31 +02:00
Laurent Rineau a0d79b7559 fix the documentation 2024-10-17 00:49:27 +02:00
Sven Oesau a06002ab2b Merge remote-tracking branch 'cgal/master' into gsoc2022-isosurface 2024-10-14 14:42:46 +02:00
Sebastien Loriot ae35bab3ff
Mac OS X cleaning (#8536) 2024-10-14 10:56:25 +02:00
Sébastien Loriot a99dcceae8 Merge pull request #8519 from albert-github/feature/issue_8515_1
issue #8515 Spelling mistakes found checking `en-GB` to `en-US`
2024-10-14 09:42:14 +02:00
Sébastien Loriot f9734b2d2b Merge pull request #8514 from afabri/CGAL-labeled-GF
Typo: labelled is UK English
2024-10-14 09:41:58 +02:00
Laurent Rineau 26c34bb90d css: same for Doxygen 1.9.6 2024-10-11 21:11:12 +02:00
Laurent Rineau 52a1f52254 fix css linter errors (empty rulesets) 2024-10-11 21:10:16 +02:00
Laurent Rineau f5eb7085db fix for pictures, in dark mode 2024-10-11 21:08:34 +02:00
Laurent Rineau 95a2a46996 formatting of CSS file 2024-10-11 21:08:19 +02:00
Sébastien Loriot 1c50e0bede Mac OS X cleaning 2024-10-10 14:21:34 +02:00
albert-github 3e57259b8c issue #8515 Spelling mistakes found checking `en-GB` to `en-US`
The "bib" part.
(checked as well as possible against google and mostly science direct as well)
2024-10-06 11:02:10 +02:00
albert-github dd02af92a2 issue #8515 Spelling mistakes found checking `en-GB` to `en-US`
Spelling corrections, `en-GB` -> `en-US`
2024-10-05 11:28:29 +02:00
Andreas Fabri 5fe32284af Typo: labelled is UK English 2024-10-03 11:23:23 +01:00
albert-github c3530e21dc Spelling correction
Spelling correction
2024-09-28 11:49:56 +02:00
Laurent Rineau 918744dade prepare the announcement of CGAL-6.0 2024-09-27 18:12:46 +02:00
albert-github d8a4cb6ae7 Layout of how to cite CGAL page
Small, in my opinion, improvement of CGAL how to cite page
2024-09-26 13:14:19 +02:00
Laurent Rineau 418b00e274
Remove double entry from bib file (#8494)
The entry `cgal:l-lsqp-82` was twice, identical, in the bib file. (Found
based on #8320 and proposed pull request
https://github.com/doxygen/doxygen/pull/11157).
2024-09-25 16:27:33 +02:00
albert-github 052e2a3e15 Remove double entry from bib file
The entry `cgal:l-lsqp-82` was twice, identical, in the bib file.
(Found based on #8320 and proposed pull request https://github.com/doxygen/doxygen/pull/11157).
2024-09-25 10:27:40 +02:00
albert-github 7171e82650 Correcting permanent redirect in Algebraic_kernel_d
Address is a https adddress
2024-09-21 18:09:38 +02:00
Sébastien Loriot d24a35eb56 use c++17 fold expression
+ indicate official LASlib is supported
2024-09-11 17:25:08 +02:00
Andreas Fabri 2983aa2ae3 Merge remote-tracking branch 'cgal/master' into Frechet-dev 2024-09-09 12:06:15 +01:00
Andreas Fabri f6d3920cd3 Mention RS in the Implementation History 2024-09-09 11:57:32 +01:00
Laurent Rineau 37f3bcfaab Merge remote-tracking branch 'cgal/master' into Triangulation_3-CDT_3-lrineau 2024-09-09 10:57:33 +02:00
Laurent Rineau 7c633af8d5
Document boost mp as a possible gmp replacement (#8438) 2024-09-04 15:21:34 +02:00
Sébastien Loriot 248f648118 do not doc internal variable 2024-09-04 15:11:37 +02:00
albert-github 37218301bb Spelling corrections
Spelling corrections
2024-09-02 12:32:30 +02:00
Sébastien Loriot af8e134aa6 doc boost mp as gmp replacement 2024-08-28 14:04:57 +02:00
Andreas Fabri baec5b0168 Merge branch 'master' into Frechet-dev 2024-08-14 10:50:37 +01:00
Andreas Fabri 0a54b2371b really remove doc 2024-08-06 16:53:02 +01:00
Laurent Rineau 318861c37c Merge remote-tracking branch 'cgal/master' into Triangulation_3-CDT_3-lrineau 2024-07-26 12:00:45 +02:00
Sébastien Loriot ef90806d2d Merge pull request #8342 from albert-github/feature/issue_8334
issue #8334 Incorrect example in "Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt"
2024-07-23 17:20:38 +02:00
Sébastien Loriot 62de71bcfb Merge pull request #8331 from albert-github/feature/bug_cgal_stylesheet
Remove hardcoded extrastylesheet code
2024-07-23 17:20:20 +02:00
Sébastien Loriot cc92ac6766 Merge pull request #8325 from albert-github/feature/bug_link_msri
Incorrect link to book at msri
2024-07-23 17:19:57 +02:00
Sébastien Loriot 5c4dd68b4c Merge pull request #8324 from albert-github/feature/issue_8323
issue #8323 Incorrect link to https://github.com/norlab-ulaval/libpointmatcher/blob/master/doc/CompilationWindows.md
2024-07-23 17:19:43 +02:00
Laurent Rineau 96a0423b3f update doc for Doxygen 1.9.6 as well 2024-07-09 17:27:34 +02:00
Sébastien Loriot c7cfad141b new accentuated letter 2024-07-08 17:21:18 +02:00
Sébastien Loriot 79b1bbfe95 Merge remote-tracking branch 'cgal/master' into HEAD 2024-07-08 17:21:08 +02:00
albert-github 9fc66c9a26 issue #8334 Incorrect example in "Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt"
The problem surfaced between the releases CGAL 5.3.2 and CGAL 5.4.4.
The "Documentation/doc/Documentation/Developer_manual/create_and_use_a_cmakelist.txt" had not been adjusted for the changes in "Surface_mesh/examples/Surface_mesh/CMakeLists.txt" i.e.
the changes in its structure and also during the change Qt5 -> Qt6 this was not detected.
2024-07-06 10:49:14 +02:00
albert-github 524ac0c049 Remove hardcoded extrastylesheet code
In the header files it was mentioned:
```
<!-- This should probably be an extrastylesheet instead of hardcoded. -->
<link href="$relpath$../Manual/cgal_stylesheet.css" rel="stylesheet" type="text/css" />
$extrastylesheet
```
this is now effectuated with this PR.
2024-07-03 12:45:21 +02:00
Laurent Rineau ed4fb14f74 merge master (WIP: need #8273) 2024-07-01 16:38:56 +02:00
Laurent Rineau b69e78f831 CSS adapted to dark mode 2024-07-01 16:02:57 +02:00
Laurent Rineau e20cee0fcb new version, after review 2024-07-01 16:02:45 +02:00
albert-github aa2056cad3 Incorrect link to book at msri
The msri institute has been renamed to Simons Laufer Mathematical Sciences Institute (SLMath) and hence also the place of the library.

See also :
- https://www.slmath.org/history
- https://en.wikipedia.org/wiki/Simons_Laufer_Mathematical_Sciences_Institute
2024-07-01 11:05:31 +02:00
albert-github 5c4c1024f7 issue #8323 Incorrect link to https://github.com/norlab-ulaval/libpointmatcher/blob/master/doc/CompilationWindows.md
Corrected link.
2024-07-01 10:45:12 +02:00
albert-github a0e7a6e4e4 Spelling corrections
Spelling corrections
2024-06-25 15:52:27 +02:00
Mael Rouxel-Labbé 67aba3fefe Merge remote-tracking branch 'cgal/master' into gsoc2022-isosurface 2024-06-20 10:18:49 +02:00
Andreas Fabri fdbb47b56c Rename package, remove default for epsilon 2024-06-18 08:30:17 +01:00
Andreas Fabri acad4997a9 merge master 2024-06-14 13:31:43 +01:00
Laurent Rineau 1b534cd347 Merge pull request #8248 from sloriot/CGAL-deprecate_Surface_mesher
deprecate Surface_mesher package
2024-06-12 10:06:14 +02:00
Laurent Rineau 32893b91c0 Merge pull request #8263 from lrineau/CGAL-update_minimal_cmake-GF
cmake_minimum_required(VERSION 3.12...3.29)
2024-06-12 10:06:12 +02:00
Laurent Rineau e7d27c13d7 Merge pull request #8264 from lrineau/linter-for-generate_how_to_cite.py
fix pylint warnings of generate_how_to_cite.py
2024-06-12 10:06:10 +02:00
Laurent Rineau 50d7abaec5 doc/ add cmake dependencies (fix #8211) 2024-06-07 15:08:02 +02:00
Laurent Rineau 7eff8e0ee8 reformat, fix other pytlint warnings 2024-06-06 21:51:41 +02:00
Laurent Rineau ce55af8da3 fix pylint errors 2024-06-06 21:35:54 +02:00
Laurent Rineau 3a223ebd1e cmake_minimum_required(VERSION 3.12...3.29) 2024-06-06 20:19:44 +02:00
Mael Rouxel-Labbé ac1bfe6c2b Merge remote-tracking branch 'cgal/master' into Hyperbolic_surface_triangulation_2-dubois 2024-06-05 23:00:27 +02:00
albert-github 36c8b7589d Spelling corrections
Last batch (for now) of spelling corrections in doxygen and normal comments
2024-05-31 19:05:34 +02:00
albert-github 8c15e4ba8f Spelling checking bibliography
Spell check on bibliography
2024-05-30 12:07:55 +02:00
Laurent Rineau e90842fd05 avoid the doxygen link to "CGAL" 2024-05-27 17:20:47 +02:00
Laurent Rineau c7f1b968a1 Update third-parties
- CMake >= 3.22.1
- Boost >= 1.72
- GMP >= 5.0.1
- MPFR >= 3.0.0
- Qt6 >= 6.2.4
- Eigen >= 3.3.7
2024-05-27 17:18:01 +02:00
Sébastien Loriot 61decadd31 Merge pull request #7908 from soesau/Kinetic_surface_reconstruction-new_package-soesau
Kinetic Surface Reconstruction
2024-05-26 17:53:54 +02:00
Sebastien Loriot 596fa09e20
Kinetic Shape Partition (#7198)
PR for Kinetic Partitioning and Reconstruction feature.

* Affected package(s): Kinetic Partitioning and Reconstruction
* Issue(s) solved (if any): 
* Feature/Small Feature (if any):
[link](https://cgal.geometryfactory.com/CGAL/Members/wiki/Features/Kinetic_Shape_Partition_3)
* Link to compiled documentation:
[link](https://cgal.github.io/7198/v0/Manual/packages.html#PkgKineticSpacePartition)
* License and copyright ownership:  GeometryFactory/Inria

**TODO:**
- [x] check branch size (for @sloriot)
2024-05-26 17:51:49 +02:00
Laurent Rineau 400030fa62 update supported compilers 2024-05-24 17:40:43 +02:00
Sébastien Loriot ddbd2e6818 Merge remote-tracking branch 'cgal/master' 2024-05-24 14:18:24 +02:00
Loïc Dubois 97df9401e9 doc update 2024-05-17 16:18:05 +02:00
Sébastien Loriot b9ef5de3b8 Merge remote-tracking branch 'mine/Kinetic_shape_reconstruction-new_package-soesau' into Kinetic_surface_reconstruction-new_package-soesau
originally:
Author: Sven Oesau <sven.oesau@geometryfactory.com>
Date:   Wed Apr 17 19:45:30 2024 +0200
2024-05-15 16:39:42 +02:00
Sven Oesau c3b5ce3b9e fix not renamed reference to Kinetic_shape_partition 2024-05-15 15:55:12 +02:00
Sven Oesau 208725035c first version of doc 2024-05-15 15:44:04 +02:00
Laurent Rineau b42aaefc01 Constrained_triangulation_3: add a skeleton of package and documentation 2024-05-03 23:18:14 +02:00
Loïc Dubois 04c481cc5f doc update 2024-04-29 11:08:10 +02:00
Loïc Dubois f5c6bf89e5 doc improvement 2024-04-26 17:24:53 +02:00
Loïc Dubois 9d8467ee87 documentation almost finished up to user manual 2024-04-12 13:50:03 +02:00
Laurent Rineau 4db6bc6d16 Merge pull request #6967 from gdamiand/gsoc2022-EBVs-Mostafa-ashraf19
GSoC'22: New CGAL's design to handle basic viewers
2024-04-10 18:04:25 +02:00
Sébastien Loriot 5254404517 Merge remote-tracking branch 'cgal/master' into HEAD 2024-03-27 22:25:41 +01:00
Sébastien Loriot bb0b1aa6bb do not pollute CI with useless warnings/errors 2024-03-27 22:17:09 +01:00
Sven Oesau 490c99f32b Merge remote-tracking branch 'cgal/master' into Kinetic_shape_reconstruction-new_package-soesau 2024-03-26 17:29:04 +01:00
Guillaume Damiand 9a0b8eb824 Merge branch 'master' into gsoc2022-EBVs-Mostafa-ashraf19 2024-03-26 16:25:29 +01:00
Sebastien Loriot a42ffdec11
Merge branch 'master' into CORE-boost_mp_number-GF 2024-03-26 00:27:22 +01:00
Sébastien Loriot 38339b7e4e Merge remote-tracking branch 'cgal/master' into HEAD 2024-03-25 16:14:08 +01:00
Laurent Rineau 8212284e1e Merge pull request #7608 from kenohori/gsoc2023-polygon_repair-kenohori
Polygon repair
2024-03-22 09:18:24 +01:00
Sébastien Loriot 6e1762c109 minimal supported version is now 1.72
workaround a bug with MSVC2017
2024-03-15 10:26:41 +01:00
Sébastien Loriot 82fe1ae299 protected another accentuated letter 2024-03-05 18:11:38 +01:00
Andreas Fabri ebf7beb329 Try to add doc 2024-03-05 17:01:03 +00:00
Sébastien Loriot 780c65365e use raw string 2024-03-05 13:19:09 +01:00
Sébastien Loriot b34d9d6808 use raw string 2024-03-05 13:13:25 +01:00
Andreas Fabri 263db4fa7a Merge master 2024-03-04 16:56:21 +00:00
Laurent Rineau d68ef56d8d update the documentation menu 2024-02-28 15:19:40 +01:00
Mael Rouxel-Labbé 7d4d0626fa Work on user manual 2024-02-28 10:25:43 +01:00
Andreas Fabri e4558a4d4b Merge branch 'master' into CORE-boost_mp_number-GF 2024-02-23 17:04:37 +01:00
Sébastien Loriot c62fce738d Add skeleton for the new package 2024-02-22 14:14:28 +01:00
albert-github 248a0523b3 Space before equal sign in ALIASES
There is a space before the `=`-sign and in the newer version of doxygen this is not accepted anymore.
(probably an unknown side effect).
2024-02-05 11:26:14 +01:00
Mael Rouxel-Labbé 07b9587eae Merge remote-tracking branch 'afabri/Kernel_23-squared_length-GF' into gsoc2022-isosurface 2024-01-31 16:47:01 +01:00
Mael Rouxel-Labbé ae265012e3 Add missing citation 2024-01-15 17:00:38 +01:00
Guillaume Damiand 3bc56024d3 Merge branch 'master' into gsoc2022-EBVs-Mostafa-ashraf19 2024-01-11 14:08:05 +01:00
Mael Rouxel-Labbé d483b3bdfd Merge remote-tracking branch 'cgal/master' into gsoc2022-isosurface 2024-01-09 13:52:46 +01:00
Andreas Fabri c3d4d115b2 Merge remote-tracking branch 'cgal/master' into gsoc2023-polygon_repair-kenohori 2024-01-05 09:53:07 +00:00
albert-github e23b535f7c Treeview missing due to missing setting in header.html
The PR #7946 was withdraw because the `$cookie` was not necessary anymore in the `header...`  files as it was part of the of the `$treeview`.
In `header_package.html` the `$treeview` has been disables and as such the `cookie.js` is not added/
Adding the `cookie.js` explicitly.

The effect was that there was a divider between the treeniew and the textual documentation but it was on the far left (and thus invisible), ith could be moved but after a refresh it was "gone" again.
2024-01-02 15:33:44 +01:00
Sven Oesau c868c0fc91 renaming package to Kinetic_space_partition 2023-12-13 20:52:32 +01:00
albert-github ab2afb24ea Incorrect link to "Perturbations for Delaunay and weighted Delaunay 3D Triangulations"
The link for the document "Perturbations for Delaunay and weighted Delaunay 3D Triangulations" was in #7781 (based on #7762) changed but it is not available at he address "https://theses.hal.science/inria-00560388/" but at "https://hal.science/inria-00560388/".
(The other changes were correct).

Found in Triangulation_3/citelist.html
2023-12-04 16:34:45 +01:00
Laurent Rineau 1672395b90 Merge pull request #7412 from HoffmannMichael/Kernel23-epic_trivial_constructions_doc-mh
Document exactness of constructions in Epick
2023-11-29 17:23:27 +01:00
Laurent Rineau fdcc7c7796 Merge remote-tracking branch 'cgal/master' into pr/afabri/7816
# Conflicts:
#	Installation/LICENSE
2023-11-29 16:45:10 +01:00
Laurent Rineau 36958928df remove opennl from Doxygen config
I checked the compilation of the documentation locally.
2023-11-29 16:38:58 +01:00
Guillaume Damiand 0655006622 Merge with master: now viewers use Qt6 2023-11-29 14:36:38 +01:00
Sébastien Loriot 87b8695d8d Merge remote-tracking branch 'cgal/master' 2023-11-27 14:42:00 +01:00
Sébastien Loriot 05e6889e45 Merge pull request #7397 from afabri/CGAL-Qt6-GF
CGAL:  Qt5 -> Qt6   [ WIP]
2023-11-24 09:36:38 +01:00
Sven Oesau eebd222377 pass on documentation from reviews
adapt kinetic shape reconstruction to renamed folders
[skip ci]
2023-11-16 15:38:01 +01:00
Sébastien Loriot 1f8d66ba75 add macro in new resource dir 2023-11-16 11:36:09 +01:00
Sébastien Loriot cfac63f156 Merge remote-tracking branch 'cgal/master' into HEAD 2023-11-16 11:35:35 +01:00
Sébastien Loriot 4d834098b8 Merge remote-tracking branch 'cgal/master' into HEAD 2023-11-16 10:39:31 +01:00