Commit Graph

111 Commits

Author SHA1 Message Date
Sylvain Pion 85afdc3e4d - Add simple tests for the Delaunay.dual() functions.
- Add an undocumented circumcenter() template member function
  in Triangulation_ds_cell_base_3 so that we can continue to use it as default
  template parameter of the TDS, and still have .dual() working when only the
  VertexBase type is changed (e.g. for the hierarchy).
2007-08-21 13:23:33 +00:00
Sylvain Pion 8aaa7e25ca Remove local include directive. 2007-08-20 20:32:19 +00:00
Sylvain Pion 76408cc24f Remove obsolete config flag CGAL_CFG_USING_BASE_MEMBER_BUG_3. 2007-08-09 09:48:44 +00:00
Monique Teillaud 8258484ac9 todo 2007-08-08 14:36:13 +00:00
Monique Teillaud 9d4efcfc6e done 2007-08-08 13:02:28 +00:00
Monique Teillaud 1b7490caaa small bug fix in reg tr 2007-08-08 11:22:50 +00:00
Monique Teillaud 9f81d9c7d6 todo 2007-08-07 13:34:01 +00:00
Sylvain Pion 1df8df5721 Allow operator== between triangulations to have 2 different TDS types. 2007-07-24 12:57:49 +00:00
Sylvain Pion b197e42c61 Slight optimization 2007-06-11 16:19:24 +00:00
Andreas Fabri 01e763217b 3.3 branch -> trunk 2007-06-04 14:27:09 +00:00
Andreas Meyer 3ad6028729 replaced largest space-consuming images by smaller jpegs 2007-06-01 18:53:54 +00:00
Andreas Meyer 7ed1a00c04 merge manual fixed from 3.3 branch back intro trunk:
svn merge -r 38751:38754 ~/projects/CGAL/branches/CGAL-3.3-branch
svn merge -r 38773:38775 ~/projects/CGAL/branches/CGAL-3.3-branch
svn merge -r 38783:38784 ~/projects/CGAL/branches/CGAL-3.3-branch
svn merge -r 38795:38796 ~/projects/CGAL/branches/CGAL-3.3-branch
svn merge -r 38815:38816 ~/projects/CGAL/branches/CGAL-3.3-branch
svn merge -r 38827:38829 ~/projects/CGAL/branches/CGAL-3.3-branch
svn merge -r 38834:38836 ~/projects/CGAL/branches/CGAL-3.3-branch
2007-05-28 23:05:00 +00:00
Andreas Meyer c1e9765ff4 manual fix: moved labels inside sectioning command 2007-04-18 14:20:12 +00:00
Sylvain Pion ffcaac6112 Make SunCC happier. 2007-04-18 07:51:26 +00:00
Sylvain Pion baff80a374 Remove semi-colons inside \ccNestedType as this pollutes the manual index. 2007-04-17 09:44:29 +00:00
Sylvain Pion bd2971268b Fix SVN keywords 2007-04-03 15:07:47 +00:00
Sylvain Pion ae242392dc Use CGAL_make_vector() 2007-04-02 20:19:14 +00:00
Christophe Delage 4bfb9c5b0f Bug reported by Daniel Russel.
RT3::find_conflict did not check if the point it's given is hidden before calling
T3::find_conflicts.

Fixed.
2007-03-30 12:15:50 +00:00
Christophe Delage a7f0ead112 Triangulation_3 iterator range insert and constructors now
use spatial_sort.
Examples and demos now call range insert when possible.
2007-03-30 09:30:22 +00:00
Andreas Meyer 41169fc270 * updated howtocite bibkeys for upcoming 3.3 release
* typo fixes/cosmetic changes
2007-03-29 17:40:13 +00:00
Sylvain Pion 05f564a1cb Run aspell. 2007-03-29 14:06:34 +00:00
Sylvain Pion 338abbdad7 Run aspell. 2007-03-29 13:59:37 +00:00
Christophe Delage a8ba70cf26 Corrects the example source names in the README (example_ prefix was still there).
Also adds an entry about examples/simplex.cpp
2007-03-27 08:54:03 +00:00
Andreas Fabri 52b4bda7af removed unused parameters 2007-03-20 08:34:26 +00:00
Sylvain Pion 8ea8bddfce Cure warning about missing base initialization (and fix a real bug in the process...) 2007-03-17 17:10:20 +00:00
Sylvain Pion b2630cd7e1 Apply trailing whites-spaces and leadgin+trailing empty-lines cleanups
to demo/**/*.h and .cpp.
2007-03-10 16:55:12 +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
Sylvain Pion 507482cf86 Replace boost::rand48 by boost::minstd_rand as it is more portable
(the former requires uint64_t, and pgCC does not seem to have it).
2007-03-10 11:33:22 +00:00
Sylvain Pion ce03ffdd1b remove warning 2007-03-03 08:52:44 +00:00
Sylvain Pion fa028cd4c5 remove warning 2007-03-03 08:51:50 +00:00
Andreas Fabri 47f0e8c689 Removed prefix example_ from the examples files 2007-02-26 18:18:43 +00:00
Andreas Fabri d28cc6f486 added teaser 2007-02-20 19:41:58 +00:00
Sylvain Pion 069bcbde7f Remove references to "see the Support Library Manual", since
we have the big integrated thing now.
2007-02-09 13:31:16 +00:00
Andreas Fabri ff4e4038bd Get rid of warning C4355: 'this' : used in base member initializer list 2007-02-05 21:36:08 +00:00
Sylvain Pion ae1f333ec2 Remove Makefile (dont_submitted, and not uptodate, missing one test program...).
Rename .C to .cpp.
2007-01-27 20:34:21 +00:00
Sylvain Pion 4238833890 Remove files for obsolete images.
Specify ALT tag for the new picture.
2007-01-13 23:10:27 +00:00
Sylvain Pion 669a1c9bc9 Fix align=center in <img> to align=middle. 2007-01-13 21:23:45 +00:00
Sylvain Pion d9313ba065 Properly link to Geomview_stream now that we can.
Mention that vertex/cell I/O operators are used in the I/O of T3.
2006-12-18 21:22:04 +00:00
Laurent Rineau 49cbf113ec - add mirror_vertex and mirror_index in the ref page of Triangulation_2.
- reorganize the documentation of mirror_index, mirror_vertex and
mirror_facet in the ref pages of Triangulation_3 and the concept TDS_3.
2006-11-29 19:11:16 +00:00
Frédéric Cazals 7277631367 Also rename functor to avoid clash with non-weighted case 2006-11-21 10:08:03 +00:00
Frédéric Cazals 203dde0bd0 Rename with "weighted" to avoid clash with non-weighted version to come. 2006-11-21 09:56:48 +00:00
Michael Hemmer 43cd342945 rm problems with CGAL::sign(CGAL::Sign) 2006-10-30 11:39:30 +00:00
Monique Teillaud 49098985b5 more precondition fixes 2006-10-04 10:00:09 +00:00
Monique Teillaud 8bc4a07695 same here, even if it was not reported... 2006-10-04 08:34:56 +00:00
Monique Teillaud 3a10264858 precondition n>6 fixed to n>=6
(reported on cgal-discuss)
2006-10-04 08:11:42 +00:00
Nico Kruithof dd96d5559d removed extra template argument from find_conflicts to make SUN happy again. 2006-09-27 08:01:05 +00:00