Commit Graph

58012 Commits

Author SHA1 Message Date
Andreas Fabri c2b235adeb integrate many, not yet all remarks of Guillaume and Serbastien's reviews 2014-11-04 18:27:47 +01:00
Laurent Rineau 43a6d033ac Remove the demo of Circular_kernel_3 2014-11-04 16:12:48 +01:00
Laurent Rineau 0288c847ca Fix a warning
include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h:49: warning: comparison between signed and unsigned integer expressions
2014-11-04 12:45:35 +01:00
Laurent Rineau bb0f45bac4 Mesh_3 and Polyhedron_3 demos have plugins in subdirs 2014-11-03 17:25:17 +01:00
Laurent Rineau 4a8d9077c0 Fix a warning
Warning from clang:

Mesh_3/include/CGAL/Mesh_3/C3T3_helpers.h:1358:25: warning: comparison of unsigned expression >= 0 is always true [-Wtautological-compare]
2014-11-03 16:52:51 +01:00
Laurent Rineau 5a8b83393d Fix a warning -Wmaybe-uninitialized
Workaround a bug in g++-4.8.3 (and previous versions):
  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47679
that is triggered in some cases when boost::optional is used.

Using boost::make_optional to copy-initialize 'bbox' hides the
warning about '*bbox' not being initialized. See that StackOverflow
answer:
  http://stackoverflow.com/a/21755207/1728537

The warning was, for example, with g++-4.8.3:

.../test/Polyhedron_Demo/./CGAL_demo/Scene_interface.h: In member function 'virtual Scene_item::Bbox Scene_polyhedron_selection_item::bbox() const':
.../test/Polyhedron_Demo/./CGAL_demo/Scene_interface.h:32:45: warning: '*((void*)& item_bbox +44)' may be used uninitialized in this function [-Wmaybe-uninitialized]
         xmax(_xmax), ymax(_ymax), zmax(_zmax)
                                             ^
In file included from .../test/Polyhedron_Demo/Scene_polyhedron_selection_item.cpp:1:0:
.../test/Polyhedron_Demo/Scene_polyhedron_selection_item.h:288:35: note: '*((void*)& item_bbox +44)' was declared here
     boost::optional<CGAL::Bbox_3> item_bbox;

That bug is not yet fixed in more recent versions of g++.
2014-11-03 16:52:51 +01:00
Laurent Rineau 67956a7a65 Fix a warning: 'unsigned int' instead of 'int'
Warning with g++-4.8.3:
.../include/CGAL/Min_sphere_of_spheres_d/Min_sphere_of_spheres_d_support_set_impl.h:171:11: warning: assuming signed overflow does not occur when assuming that (X + c) < X is always false [-Wstrict-overflow]
           for (int j=i+1; j<m; ++j)
           ^
That warning is about "signed overflow", and the code actually does not
use the sign of the integer.
2014-11-03 16:52:40 +01:00
Andreas Fabri c943497763 Add split_graph_into_polylines and example 2014-11-03 13:07:50 +01:00
Laurent Rineau c5aeb89b68 Merge remote-tracking branch 'origin/BGL_doc_fixes-GF'
Fix the documentation in BGL.

Fix a typo in a function name.

Approved by the Release Manager.
2014-11-03 12:39:24 +01:00
Laurent Rineau f5274ed1dc Merge remote-tracking branch 'origin/CGAL-url_of_previous_manuals-GF'
- Remove the paragraph "This is the beta version of the CGAL Manual
  generated with doxygen." that was in the main page of the CGAL manual.

- Add a section, at the end of the main page, that explains where to
  find the manuals of previous CGAL versions.
2014-11-03 12:35:42 +01:00
Laurent Rineau 2d6c04f415 Add a new script
That script displays the diffs between testsuite results
2014-10-31 17:34:45 +01:00
Laurent Rineau cba9a3f56c Commit the new paths that are used since August 2014-10-31 17:34:45 +01:00
Laurent Rineau a096cdf431 releases/CGAL-4.5-branch targets CGAL-4.5.1 2014-10-31 17:27:28 +01:00
Laurent Rineau 20161acafd Update the script for CGAL-4.5 2014-10-31 16:59:25 +01:00
Laurent Rineau f526ebd5cd Merge branch Mesh_3-fix_plugin_interface-cjamin' into releases/CGAL-4.5-branch
The changes the interface ID declared by
demo/Mesh_3/include/CGAL_demo/Plugin_interface.h, so that the ID of
plugin interface for the Polyedron demo and the Mesh_3 are
different. That will allow to have plugins for both demos in the same
directory.
2014-10-31 16:40:04 +01:00
Laurent Rineau d85eaa327c Merge remote-tracking branch 'origin/Mesh_3-fix_exuder_holes_on_surface-GF' into releases/CGAL-4.5-branch
Bug-fix for Mesh_3:
  Fix a bug in the sliver exudation preservation of boundaries.

Approved by the Release Manager.
2014-10-31 11:32:09 +01:00
Clement Jamin ae0a88708b Fix: a plugin may implement two interfaces 2014-10-29 15:34:01 +01:00
Clement Jamin 72513db3b0 Better console output 2014-10-29 15:14:08 +01:00
Clement Jamin 9979427337 Fix ID and #define 2014-10-29 15:13:31 +01:00
Clement Jamin faf129c1dc Fix interface name 2014-10-29 10:21:29 +01:00
Clement Jamin 9259bd777f Also uses 64 bits for Xor_type on 32-bit systems, if possible 2014-10-28 17:47:18 +01:00
Clement Jamin fa796a088d unsigned long was not big enough here 2014-10-28 16:56:44 +01:00
Jane Tournois b49e7b7f88 fix conversion warnings 2014-10-24 14:50:08 +02:00
Jane Tournois 42abb4db5a fix a warning 2014-10-24 14:24:29 +02:00
Jane Tournois 6529a13915 wdim should also be a std::size_t 2014-10-24 13:51:23 +02:00
Andreas Fabri 15bfc64808 We must run kruskal on the filtered graph to ignore the infinite vertex
Approved by the release manager
2014-10-24 11:30:16 +02:00
Sébastien Loriot aeaed0d18a remove deprecated constructor that conflict with the new one 2014-10-24 10:12:16 +02:00
Sébastien Loriot e5a44099e9 add additional constructor to allow building a primitive from a descriptor 2014-10-23 17:03:48 +02:00
Andreas Fabri 9388e7edaf fix a typo 2014-10-22 11:51:32 +02:00
Jane Tournois df0ec2e54d mention exuder bug fix in changes.html 2014-10-21 11:29:07 +02:00
Andreas Fabri fe219593e6 Add where to find doc of previous releases 2014-10-21 10:49:19 +02:00
Jane Tournois 127a07b0b1 fix warnings 2014-10-21 10:47:49 +02:00
Andreas Fabri d91f2deaff safisfies_link_condition() -> satisfies_link_condition() in code/doc/test
Add doxygen for collapse_edge() with an EdgeIsConstrainedMap
2014-10-21 10:17:34 +02:00
Laurent Rineau 908d608072 Merge branch 'releases/CGAL-4.5-branch'
Conflicts:
	Installation/changes.html
2014-10-20 14:46:36 +02:00
Laurent Rineau 52c4437539 This branch needs to bump the SONAME 2014-10-20 14:41:14 +02:00
Jane Tournois b4a8992e2a complete the use of std::size_t instead of unsigned int in Image_IO 2014-10-20 13:06:33 +02:00
Jane Tournois 06eb921215 fix the use of integers
patch suggested by Bryn Lloyd on cgal-discuss to avoid an integer overflow
problem that occurs when generating a 3D mesh from very large images
2014-10-20 12:39:03 +02:00
Sébastien Loriot 452166d3dd update package description 2014-10-20 08:27:32 +02:00
Laurent Rineau 47708fd7e5 Fix a warning 2014-10-17 16:34:08 +02:00
Jane Tournois 2ff8f82bf2 improve the sorting function 2014-10-17 16:34:08 +02:00
Jane Tournois d9cb114484 get_umbrella fixed. It was responsible for holes on the output mesh surface
it collects edges incident to the internal facets of the conflict zone,
that are restricted to the surface.
For each such edge :
- if it appears once, we keep it
- if it appears twice, we don't consider it
- if it appears more than twice, we are in a non-manifold configuration,
and the move (pump) is canceled
2014-10-17 16:34:08 +02:00
Dmitry Anisimov bce9b83e7e The last commit in the final third submission.
This is the last commit with updated documentation and new example on height interpolation in the last third review submission of the package.
2014-10-16 22:07:48 +02:00
Laurent Rineau 70b5a14c9a Fix the picking
There was two problems:
  - the handling of glPushName()/glPopName was not consistent,
  - the splatting MUST be deactivated during a picking.
2014-10-16 15:48:06 +02:00
Marc Glisse 4292c297e2 Add Dimension to the Kernel_d concept. 2014-10-15 14:58:25 +02:00
Andreas Fabri 9af438d488 add example path and write intro 2014-10-15 14:35:34 +02:00
Sébastien Loriot 2eef1cc07d remove html tag and add missing backticks
trivial doc bugfix for master
2014-10-15 11:03:23 +02:00
Andreas Fabri 4be974b230 Improve Getting Started 2014-10-14 18:38:18 +02:00
Laurent Rineau 7858ef0009 updated crontab (automated commit) 2014-10-14 12:18:02 +02:00
Laurent Rineau 00a35cf3f5 Reformat to avoid wrapping 2014-10-10 16:41:17 +02:00
Laurent Rineau 54b9e83649 Announcement for 4.5 2014-10-10 16:36:07 +02:00