Commit Graph

103 Commits

Author SHA1 Message Date
Sébastien Loriot 50510c05ea add include directive for license of all GPL header files
done using:
ack-grep "^GPL" */package_info/*/license.txt -l | awk -F "/" '{print $1}' > /tmp/gpl_packages
for i in `cat /tmp/gpl_packages | \
          grep -v Operations_on_polyhedra | \
          grep -v Algebraic_kernel_for_circles | \
          grep -v Algebraic_kernel_for_spheres | \
          grep -v Polyhedron_IO`;
do
  echo $i
  python Scripts/developer_scripts/add_license_in_pkg_header.py $i
done
python Scripts/developer_scripts/add_license_in_pkg_header.py Operations_on_polyhedra Polygon_mesh_processing
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_circles Circular_kernel_2
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_spheres Circular_kernel_3
python Scripts/developer_scripts/add_license_in_pkg_header.py Polyhedron_IO Polyhedron
2017-01-19 15:20:25 +01:00
Clement Jamin 9a61b23b55 Use get_default_random() instead of default_random 2016-03-09 10:35:21 +01:00
Laurent Rineau 91bca286d3 Fix warnings with CGAL_USE
All those variables were unused only if CGAL_NDEBUG was
defined. CGAL_USE can solve that.
2015-08-19 17:37:46 +02:00
Sébastien Loriot bc8e1f399d workaround a bug in dijsktra algorithm in boost 1.54 affecting normal estimation 2014-07-19 12:20:29 +02:00
Efi Fogel 57101ce35d Integrated with a recent version master 2013-07-14 14:40:09 +03:00
Andreas Fabri 34b112ca5d remove unused parameters 2013-02-27 17:16:39 +01:00
Andreas Fabri 7425146a87 virtual function of derived class must match the API of the base class 2013-02-26 10:00:04 +01:00
Andreas Fabri a756bacff2 add static_cast / switch to size_t 2013-02-12 19:18:22 +01:00
Laurent Rineau d19578725b Fix warnings 2013-02-07 18:15:23 +01:00
Andreas Fabri 0acdb162fa one less warning in Envelope_3, Intersection_3, Interpolation 2013-01-30 18:39:40 +01:00
Efi Fogel 58b921483b renamed Are_all_sides_oblivious_tag with Are_all_sides_oblivious_category 2012-11-21 16:33:48 +02:00
Eric Berberich 1102c1994e Internal _insert_xyz function get a more intuitive signature
This change is motivated by other internal function that have a
similar signature already. Example: prev1->cv<-prev2+cmp is now 
he_to->cv,cv_dir->he_away
2012-10-23 12:55:25 +00:00
Eric Berberich 77b79f3dda merge from next 2012-08-07 13:52:31 +00:00
Eric Berberich 44e8cf7893 init dummies 2012-08-06 11:28:43 +00:00
Eric Berberich 5afcc354b2 adaptions to new signatures of internal insertion functions
question open: Do we have to care about swapping of predecessors
halfedges, or do we have to disallow it?
2012-08-06 10:17:09 +00:00
Laurent Rineau db194534c7 First big patch to fix -Wunused-local-typedefs
-Wunused-local-typedefs is a new warning flag of gcc-4.7, and it will enabled
 by -Wall since gcc-4.8 (not yet released).

The fix is a big set of removals of unused typedefs (or comments, or moves,
depending on the context).
2012-08-01 13:29:16 +00:00
Efi Fogel 1bbcb4f27a fixed previous commit 2012-02-01 08:10:55 +00:00
Efi Fogel 34a4fbde11 Pacify some compiler & clean up 2012-01-29 10:54:05 +00:00
Efi Fogel 50c2148036 pacify some compiler & cleanup 2012-01-25 10:36:22 +00:00
Laurent Rineau 8f59fd9592 Turn QPL into LGPLv3+ 2012-01-13 16:33:35 +00:00
Eric Berberich a7a06c4e2b replaced Arr_..._side_category with :.._side_category 2011-05-31 18:08:54 +00:00
Ophir Setter 87c89015aa Bug when two surface intesect on the source vertex of a resolved edge 2011-05-15 20:39:31 +00:00
Efi Fogel 1358700d4c deprecated Arr_face_map.h, use Arr_face_index_map.h instead 2010-06-25 09:39:36 +00:00
Sébastien Loriot 52317dd49f add python script (replace_CGAL_NAMESPACE.py) to replace CGAL_BEGIN_NAMESPACE and CGAL_END_NAMESPACE
by namespace CGAL { and } //namespace CGAL. in all .h and .cpp files
in a directory.
Apply it to all packages in the trunk
Remove macro definition from the config.h file.
2010-06-09 07:37:13 +00:00
Michael Hemmer c258b8d941 fix: faces have inner and outer ccbs to be initialized 2010-05-25 15:48:15 +00:00
Michael Hemmer 613c4827c7 fix: points on a resolved edge can be equal 2010-05-25 15:47:27 +00:00
Marc Glisse ffab18531b cleanup extra ',' 2010-04-24 09:08:18 +00:00
Sylvain Pion 85dc12f2a7 Remove empty lines at beginning and end of files
(apply Scripts/developer_scripts/remove_empty_lines.pl).
2010-02-01 12:55:28 +00:00
Laurent Rineau 83912b2952 Massive fix of svn:keywords properties, and $URL$ keyword. 2009-10-20 08:59:26 +00:00
Efi Fogel d6a723e82a replaced Arr_blah_side_tag with Arr_blah_side_category 2009-09-21 10:55:53 +00:00
Efi Fogel 8099e87845 Ignored vertices on open boundary 2009-07-09 20:54:58 +00:00
Efi Fogel 783fa11145 converting unsigned int to bool - pacify MSVC 2009-07-09 17:51:14 +00:00
Efi Fogel 78363649b8 cleanup 2009-07-08 07:35:21 +00:00
Efi Fogel 319192893a cleanup 2009-07-08 07:04:40 +00:00
Efi Fogel f9120293f5 cleanup 2009-07-05 15:27:55 +00:00
Efi Fogel d29bd87a6c Fixed Arrangement_2 construction bug - made the geometry traits const 2009-07-05 13:22:10 +00:00
Ophir Setter b337b3e824 accidently uncomment some non relevant lines 2009-06-30 14:32:09 +00:00
Michael Hemmer 53c4fe7531 split assert using && 2009-06-22 13:15:37 +00:00
Ophir Setter 138303d8a8 fix of the change to the new interface 2009-06-18 15:28:28 +00:00
Eric Berberich 8bf4bcd1e3 is_at_infinity -> is_at_open_boundary 2009-06-04 10:05:23 +00:00
Eric Berberich 8173f2affe replaced old tags with new tags 2009-06-04 09:42:11 +00:00
Eric Berberich d3b6b3267c removed old tag 2009-06-04 09:34:11 +00:00
Ophir Setter 55e85a0434 update 2009-06-04 09:00:05 +00:00
Ophir Setter 302670127d fixing a bug in envelope visitor 2009-05-31 09:37:48 +00:00
Ophir Setter 8463e5750b D & C 2009-05-30 18:33:09 +00:00
Ophir Setter dc696b0463 element visitor merge 2009-05-30 17:29:09 +00:00
Ophir Setter 625e6f87de renamed envelope overlay 2009-05-28 22:43:21 +00:00
Ophir Setter b78a9ca15f renaming of header 2009-05-28 18:17:09 +00:00
Ophir Setter 3fa5050b6d envelope diagram on surface 2009-05-28 17:37:39 +00:00
Ophir Setter bc9ee2ca39 remove unneeded CMakeLists and adding a namespace 2009-05-26 20:48:38 +00:00