Commit Graph

47 Commits

Author SHA1 Message Date
Andreas Fabri 991f3847e8 Do not include graph_traits_Polyhedron.h, properties_polyhedron.h and Polyhedron_iostream.h 2018-05-03 13:23:50 +02:00
Laurent Rineau 01fc5c3b33 Merge branch 'releases/CGAL-4.10-branch' 2017-06-16 11:45:45 +02:00
Laurent Rineau bececa63df Merge branch 'releases/CGAL-4.9-branch' into releases/CGAL-4.10-branch 2017-06-16 11:43:08 +02:00
Sébastien Loriot 1ca852bb87 fix Booleen operations with full/empty space 2017-06-07 09:36:09 +02:00
Andreas Fabri c81b707bfb Do not include graph_traits_{Polyhedron | Surface_mesh}.h 2017-04-24 19:17:43 +02:00
Laurent Rineau b76e1e021a Merge pull request #1470 from sloriot/Nef_3-cst_from_FaceGraph
Add a Nef_3 constructor from a FaceGraph
2016-10-17 10:03:28 +02:00
Laurent Rineau 5ab5825013 Merge pull request #1466 from sloriot/BGL-add_nef_to_pm
Add a function to convert a Nef polyhedron to a polygon mesh
2016-10-17 10:03:24 +02:00
Sébastien Loriot 74c66cc44d add missing example 2016-10-10 16:44:24 +02:00
Sébastien Loriot b572d76f16 move unused files to archive 2016-10-06 09:53:36 +02:00
Sébastien Loriot f1f82785ac add a constructor from a FaceGraph
The first version code is from @afabri
2016-09-21 08:47:06 +02:00
Sébastien Loriot 6b338eeb1f improve the name of projects in cmake scripts of examples 2016-09-08 00:02:55 +02:00
Sébastien Loriot 4c29bf1b44 CMAKE_SOURCE_DIR -> CMAKE_CURRENT_SOURCE_DIR 2016-03-24 16:33:46 +01:00
Sébastien Loriot 881e4d3199 request Core only in examples, tests and demos when really needed 2016-03-07 22:36:57 +01:00
Sébastien Loriot 2d191d6651 commit CMakeLists.txt for all examples and tests 2016-03-07 17:39:36 +01:00
Laurent Rineau 4897129d09 s/Gmpz/Exact_integer/ 2014-06-27 15:11:52 +02:00
Andreas Fabri ae26141f46 remove unused variable 2013-03-01 16:22:34 +01:00
Laurent Rineau b972b38b6d - Remove the capital P in "convert_to_Polyhedron". Add a wrapper function for
back-compatibility.
- Fill svn:ignore properties.
2009-06-30 09:40:14 +00:00
Andreas Fabri 849b006f08 rename to have unique example file names 2008-11-27 13:51:07 +00:00
Andreas Fabri 8fbfc9df3a rename to have unique example file names 2008-11-27 13:45:14 +00:00
Andreas Fabri d64870f900 Create unique example file names for cmake 2008-11-19 16:19:35 +00:00
Peter Hachenberger b52003b9e4 removed old Polyline constructor 2008-09-02 08:02:37 +00:00
Peter Hachenberger e4c8f19881 adapted for new interface for polyline construction 2008-08-23 16:51:00 +00:00
Peter Hachenberger 8b9507ce6f examples should not bother users with the use
of items any more
2008-08-11 11:31:44 +00:00
Fernando Cacciola f93437ca22 Removed *unmodified* auto-generated CMakeLists.txt (now created by create_internal_release) 2008-05-05 14:01:55 +00:00
Fernando Cacciola b704509dcf Examples/Demos/Test CMake scripts updated 2008-03-05 21:14:02 +00:00
Fernando Cacciola a659cd852a Added project() and conditional test for CGAL_DIR 2008-02-14 15:42:36 +00:00
Fernando Cacciola 14043c43a0 Replaced CGALROOT by CGAL_DIR (the latters is used by CMake automatically) 2008-02-08 17:47:21 +00:00
Fernando Cacciola afddfc4fca CMake scripts for demos/examples/test added 2008-02-06 19:06:24 +00:00
Laurent Rineau ecdbf1291b remove incorrect execution bits 2007-05-30 12:55:54 +00:00
Peter Hachenberger 907b40bba3 removed warning 2007-04-26 13:00:36 +00:00
Peter Hachenberger 20f8304460 removed small bug 2007-03-29 13:23:52 +00:00
Peter Hachenberger a095c68dfa adapted note for new kernel 2007-03-26 20:23:40 +00:00
Peter Hachenberger 02530f52c8 exchanged kernel 2007-03-26 17:37:36 +00:00
Peter Hachenberger 50cc3010f0 example for lazy kernel and use of floating points 2007-03-26 17:14:01 +00:00
Sylvain Pion 847c23a15e Removing leading and trailing empty lines from all example files.
Using the following Perl script:
-----------------------------------------------------
#!/usr/bin/perl

local($/) = undef;
my $text = <>;

$text =~ s/\A\n+//mg;
$text =~ s/\n+\Z/\n/mg;

print "$text";
-----------------------------------------------------
2007-03-10 16:17:17 +00:00
Sylvain Pion ffe1e4ec1c More redundant filename removal.
The only survivors should be under Arrangement_2/examples
(some Doxygen syntax is used, so I don't touch them).
2007-03-10 15:22:41 +00:00
Sylvain Pion 6fb5cb906b Remove trailing white spaces and end of lines.
(using : perl -pi.bak -e 's/\s+$/\n/' */examples/*/*.cpp )
2007-03-10 14:59:41 +00:00
Sylvain Pion b8b87ab5a5 Actually, the "// file: example_bla.cpp" lines are not needed anymore,
since the manual tools know it.  So let's just remove them (many were
not uptodate with the filemane anyway).
2007-03-10 14:48:00 +00:00
Sylvain Pion 23edc11d3b Fix all first lines of examples "// file : example_file.C" to .cpp suffix.
Using :

for i in * ; do  cd $i ; for f in examples/*/*.cpp ; do ( head -1 $f | grep file | grep -v '\.cpp' ) && echo $f && perl -pi.bak -e 's/\.C$/.cpp/' $f ; done ; cd .. ; done
2007-03-10 14:34:05 +00:00
Andreas Fabri e6a66a564b derivation instead of typedefs 2007-02-07 22:14:57 +00:00
Andreas Fabri 98c5ceded4 derivation instead of typedefs 2007-02-07 22:11:10 +00:00
Andreas Fabri 44e6a483f1 changed .C to .cpp in examples 2006-07-09 19:32:06 +00:00
Andreas Fabri 6a6dad9f4a juggling with typedefs to get rid of VC++ ICE 2006-03-21 12:27:07 +00:00
Peter Hachenberger 799804240c input file for example 2006-03-12 20:45:39 +00:00
Peter Hachenberger 6d6e97b88e example for global function OFF_to_nef3 2006-03-12 20:39:34 +00:00
Peter Hachenberger cf04e57d38 examples for the construction of a set of polygons
and a set of polylines.
2006-03-05 17:34:34 +00:00
Laurent Saboret a1fe37aed9 Move packages to trunk root 2006-02-14 08:58:17 +00:00