Commit Graph

11 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 82f994833b Constification 2007-03-08 10:39:00 +00:00
Ron Wein 04b5f686c5 Some fixes (thanks Michael H.) 2006-11-08 11:39:49 +00:00
Ron Wein 357be0f92d Small fixes after Eric's review. 2006-10-05 15:48:49 +00:00
Ron Wein a2a0308812 Added more examples. 2006-08-03 13:31:36 +00:00
Ron Wein 795a405ef9 Initial version of the documentation. 2006-08-03 09:41:46 +00:00
Ron Wein af196aa7a9 Added the capability to handle vertical segments, and fixed the segment
example accordingly.
2006-08-03 08:20:48 +00:00
Ron Wein d805e4b4d0 Fixed the code so it compiles. 2006-08-01 07:08:47 +00:00
Ron Wein 6c2984d043 Improved code. 2006-07-30 14:53:05 +00:00
Baruch Zukerman 54cae21084 1st revision 2006-07-24 11:48:31 +00:00