Commit Graph

13 Commits

Author SHA1 Message Date
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 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 32e8dc4c7e remove unused variables... 2007-03-10 11:16:26 +00:00
Andreas Fabri 7318915fad cleanup 2007-03-06 15:09:12 +00:00
Andreas Fabri 3292b3767b cleanup 2007-03-06 15:08:13 +00:00
Andreas Fabri 3bbf6ce709 generated makefile does the job 2007-03-06 15:04:52 +00:00
Andreas Fabri 6a5e135566 Renamed _example suffix 2007-03-06 15:03:37 +00:00
Andreas Fabri 0471abeee2 remove duplicate 2007-03-06 15:02:48 +00:00
Sylvain Pion f6a4475856 Change Cartesian<double> to EPICK in examples/demos. 2006-08-13 08:53:50 +00:00
Andreas Fabri a8aa916751 changed .C to .cpp in examples 2006-07-09 19:35:13 +00:00
Joachim Reichel f582718758 rename create_makefile to cgal_create_makefile to avoid name clashes,
adjust all occurences of create_makefile and create\_makefile in the entire
repository (well, trunk only)
2006-03-15 22:10:02 +00:00
Laurent Saboret ab855370c8 Move packages to trunk root 2006-02-14 08:58:18 +00:00