Laurent Rineau
67cf188907
Update PULL_REQUEST_TEMPLATE.md
2019-06-13 10:46:40 +02:00
Laurent Rineau
e9388decda
Update PULL_REQUEST_TEMPLATE.md
2019-06-13 10:46:23 +02:00
Laurent Rineau
331ee5daf5
updated crontab (automated commit)
2019-06-13 10:18:04 +02:00
Laurent Rineau
1d49a7cdb6
Merge pull request #3985 from maxGimeno/Infrastructure-Fix_in_travis_scripts-GF
...
Travis CI: Fix the behavior of generate_travis.sh
2019-06-07 09:20:35 +02:00
Maxime Gimeno
33c9a0833f
print diff in check
2019-06-06 16:56:14 +02:00
Maxime Gimeno
39d81a8d68
Use LC_COLLATE to unify the order of the packages list.
2019-06-06 16:07:47 +02:00
Laurent Rineau
e4993273c5
Merge pull request #3864 from danston/Point_set_shape_detection_3-make_it_general_with_region_growing-danston
...
[Feature] Shape detection with region growing
2019-06-05 11:20:29 +02:00
Laurent Rineau
44ea54db97
Merge pull request #3931 from afabri/Stream_support-parseXML-GF
...
Stream_support: Add example to read an xml file using boost::property_tree
2019-06-05 11:20:26 +02:00
Laurent Rineau
39c8f7ae1f
Merge pull request #3950 from afabri/Triangulation_23-PointWithInfo-GF
...
2D and 3D Triangulations: Unify insertion of range of points with info
2019-06-05 11:20:23 +02:00
Laurent Rineau
1659505f96
Merge pull request #3953 from lrineau/Mesh_3-lambdas_can_be_sizing_fields-GF
...
Mesh_3: Allow lambdas (or other callables) as MeshDomainField_3
2019-06-05 11:20:20 +02:00
Laurent Rineau
adf5297f52
Merge pull request #3959 from maxGimeno/Stream_support-Add_references_to_WKT_in_User_manual-GF
...
Stream_support: Fix WKTDocumentation
2019-06-05 11:20:17 +02:00
Laurent Rineau
4719bac98e
Merge pull request #3970 from maxGimeno/Demo-LCC_plugin-GF
...
3D Demo: Lcc IO plugin
2019-06-05 11:20:13 +02:00
Laurent Rineau
adaed61c20
Merge branch 'releases/CGAL-4.14-branch'
2019-06-05 10:58:12 +02:00
Laurent Rineau
31dd4f11fb
Merge pull request #3969 from lrineau/Polyhedron-demo__fix_segfault_of_load_plugin-GF
...
Polyhedron demo: fix the menu entry 'Load plugin'
2019-06-05 10:44:27 +02:00
Laurent Rineau
926067967a
Merge branch 'releases/CGAL-4.13-branch' into releases/CGAL-4.14-branch
2019-06-05 10:43:44 +02:00
Laurent Rineau
da1bfb1596
Merge pull request #3917 from afabri/Surface_mesh-read_off-GF
...
Surface_mesh: Fix read_off(istream,Surface_mesh)
2019-06-05 10:41:09 +02:00
Laurent Rineau
3cfc790a68
Merge pull request #3968 from lrineau/Polyhedron-demo__remove_need_for_Boost_libraries-GF
...
Remove the need for Boost libraries at the top level CMakeLists.txt
2019-06-05 10:41:04 +02:00
Laurent Rineau
d05de694ef
typo
2019-06-04 17:00:17 +02:00
Laurent Rineau
44cfe8d2eb
Do not use `REQUIRED OPTIONAL_COMPONENTS` with FindBoost
...
The CMake module `FindBoost.cmake` only supports `OPTIONAL_COMPONENTS` since CMake-3.11. Previously they were treated like required components.
2019-06-03 10:44:01 +02:00
Dmitry Anisimov
5a4fa9e98b
disabled warnings
2019-05-29 17:08:54 +02:00
Maxime Gimeno
6a3cce1429
Add colors per volume.
2019-05-29 15:46:12 +02:00
Laurent Rineau
ecaa138761
Do not block load_plugin from loading plugins
...
Since the adoption of the "keywords" feature, the 'Load plugin' menu
was not able to load a plugin with other keywords. That defeats the
purpose of that feature.
2019-05-29 11:44:08 +02:00
Laurent Rineau
cdb72b9f34
Avoid a segfault in `load_plugin`
...
Before that patch `accepted_keywords` was a dangling reference to an
object that was destroyed at the end of the constructor of the class
`Polyhedron_demo`.
Now, that `QStringList` is copied, but it is a short list of short
strings.
2019-05-29 11:42:35 +02:00
Laurent Rineau
cd22917e3d
Remove the need for Boost libraries at the top level CMakeLists.txt
...
The 3D demo does not directly requires Boost libraries. Then are
pulled as a `PUBLIC` dependency of `CGAL::CGAL`. Only two plugins
really need Boost libraries:
- Classification needs Boost iostreams and serialization,
- Mesh_3 `io_image_plugin` needs Boost filesystem for multi-files 3D
images.
2019-05-29 11:18:13 +02:00
Laurent Rineau
7fc36ad2a5
Update LICENSE.md
2019-05-28 15:01:05 +02:00
Maxime Gimeno
32cdcb9a54
Fix WKT doc
2019-05-27 09:34:05 +02:00
Dmitry Anisimov
bdc46b293d
class name clash fix
2019-05-26 11:44:33 +02:00
Andreas Fabri
0ed700b30c
Unify wording
2019-05-25 10:13:56 +02:00
Dmitry Anisimov
57cbe098fc
added deprecated code for back compatability
2019-05-24 18:57:15 +02:00
Laurent Rineau
78c5ec760f
Fix the URL
2019-05-24 14:20:50 +02:00
Andreas Fabri
f954b00063
Fix error
2019-05-24 11:32:32 +02:00
Andreas Fabri
7b4bad5666
Fix warnings
2019-05-24 11:14:58 +02:00
Laurent Rineau
22d6d9ebd8
Allow lambdas (or other callables) as MeshDomainField_3
...
That patch uses C++11 `<type_traits>`, and
`boost::callable_traits::is_invocable` that is available only since
1.66. If Boost<1.66, then the previous behavior (testing
`Sizing_field::FT`) is kept.
Fix issue https://github.com/CGAL/cgal/issues/3005
2019-05-24 10:45:12 +02:00
Dmitry Anisimov
3738de08ed
Merge branch 'master' into Point_set_shape_detection_3-make_it_general_with_region_growing-danston
2019-05-23 10:38:45 +02:00
Laurent Rineau
5c2df203b4
Merge pull request #3943 from mglisse/Number_types-expression_templates-glisse
...
Misc fixes for expression templates
2019-05-23 08:50:17 +02:00
Laurent Rineau
419032d859
Merge pull request #3947 from MaelRL/CGAL-Fix_typos-GF
...
Fix some typos in code/comments/documentation
2019-05-23 08:50:14 +02:00
Laurent Rineau
5dc823d509
Merge branch 'releases/CGAL-4.14-branch'
2019-05-23 08:49:56 +02:00
Laurent Rineau
e3a4db56f6
Merge pull request #3948 from MaelRL/PMP-fix_missing_using_414-GF
...
Add missing 'using' for boost's choose_param() / get_param()
2019-05-23 08:45:15 +02:00
Laurent Rineau
7be5e3fbe5
Merge branch 'releases/CGAL-4.13-branch' into releases/CGAL-4.14-branch
2019-05-23 08:44:39 +02:00
Laurent Rineau
f51b7e7934
Merge pull request #3876 from sloriot/Nef_3-fix_triangle_order
...
Fix index order of triangles
2019-05-23 08:31:50 +02:00
Laurent Rineau
e5b653953f
Merge pull request #3941 from lrineau/Convex_hull_3-fix_Convex_hull_traits_3_default_of_third_arg-GF
...
Fix the default of 3rd template parameter of Convex_hull_traits_3
2019-05-23 08:31:47 +02:00
Laurent Rineau
c1a13a0a1e
Merge pull request #3949 from lrineau/Installation-fix_ctest_for_Andreas-GF
...
Fix CTest CGAL tests when binary dir is a sub-directory
2019-05-23 08:31:44 +02:00
Maxime Gimeno
4d31030950
WIP randomColors for lcc
2019-05-22 16:22:01 +02:00
Laurent Rineau
21367079d2
Merge pull request #3952 from sgiraudot/PSP-Add_changes_about_old_API_removed-GF
...
Add changes about old PSP API removed
2019-05-22 12:25:51 +02:00
Simon Giraudot
69574884a0
Add changes about old PSP API removed
2019-05-22 11:14:32 +02:00
Andreas Fabri
d318f1e938
Update changes.md
2019-05-22 11:08:37 +02:00
Dmitry Anisimov
110b94c16d
conflicts fixes
2019-05-21 20:06:06 +02:00
Dmitry Anisimov
2fac5f2f13
face index to size_t warning fix
2019-05-21 17:52:00 +02:00
Andreas Fabri
d067fb409a
uncomment
2019-05-21 17:18:11 +02:00
Laurent Rineau
268cb59ce1
Merge pull request #3739 from lrineau/Installation-remove_FindBLAS_LAPACK_TAUCS-GF
...
Remove support for BLAS, LAPACK, and TAUCS
2019-05-21 16:37:10 +02:00