From 5c14975e8be7c4b1dfd762756bfc90a3eca34243 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Sun, 9 Jul 2006 19:12:11 +0000 Subject: [PATCH] changed .C to .cpp in examples --- ...ncremental_hull_3_demo.C => incremental_hull_3_demo.cpp} | 0 Convex_hull_3/demo/Convex_hull_3/makefile | 2 +- .../{quickhull_3_demo.C => quickhull_3_demo.cpp} | 0 Convex_hull_3/doc_tex/Convex_hull_3/convex_hull_3.tex | 6 +++--- Convex_hull_3/doc_tex/Convex_hull_3_ref/convex_hull_3.tex | 2 +- .../doc_tex/Convex_hull_3_ref/convex_hull_incremental_3.tex | 2 +- .../{dynamic_hull_3_ex.C => dynamic_hull_3_ex.cpp} | 0 .../{incremental_hull_3_ex.C => incremental_hull_3_ex.cpp} | 0 .../Convex_hull_3/{quickhull_3_ex.C => quickhull_3_ex.cpp} | 0 9 files changed, 6 insertions(+), 6 deletions(-) rename Convex_hull_3/demo/Convex_hull_3/{incremental_hull_3_demo.C => incremental_hull_3_demo.cpp} (100%) rename Convex_hull_3/demo/Convex_hull_3/{quickhull_3_demo.C => quickhull_3_demo.cpp} (100%) rename Convex_hull_3/examples/Convex_hull_3/{dynamic_hull_3_ex.C => dynamic_hull_3_ex.cpp} (100%) rename Convex_hull_3/examples/Convex_hull_3/{incremental_hull_3_ex.C => incremental_hull_3_ex.cpp} (100%) rename Convex_hull_3/examples/Convex_hull_3/{quickhull_3_ex.C => quickhull_3_ex.cpp} (100%) diff --git a/Convex_hull_3/demo/Convex_hull_3/incremental_hull_3_demo.C b/Convex_hull_3/demo/Convex_hull_3/incremental_hull_3_demo.cpp similarity index 100% rename from Convex_hull_3/demo/Convex_hull_3/incremental_hull_3_demo.C rename to Convex_hull_3/demo/Convex_hull_3/incremental_hull_3_demo.cpp diff --git a/Convex_hull_3/demo/Convex_hull_3/makefile b/Convex_hull_3/demo/Convex_hull_3/makefile index 2ab576c77fc..ee78f9be143 100644 --- a/Convex_hull_3/demo/Convex_hull_3/makefile +++ b/Convex_hull_3/demo/Convex_hull_3/makefile @@ -51,6 +51,6 @@ clean: \ # suffix rules #---------------------------------------------------------------------# -.C$(OBJ_EXT): +.cpp$(OBJ_EXT): $(CGAL_CXX) $(CXXFLAGS) $(OBJ_OPT) $< diff --git a/Convex_hull_3/demo/Convex_hull_3/quickhull_3_demo.C b/Convex_hull_3/demo/Convex_hull_3/quickhull_3_demo.cpp similarity index 100% rename from Convex_hull_3/demo/Convex_hull_3/quickhull_3_demo.C rename to Convex_hull_3/demo/Convex_hull_3/quickhull_3_demo.cpp diff --git a/Convex_hull_3/doc_tex/Convex_hull_3/convex_hull_3.tex b/Convex_hull_3/doc_tex/Convex_hull_3/convex_hull_3.tex index 0be238fc3b9..3764d84a0b7 100644 --- a/Convex_hull_3/doc_tex/Convex_hull_3/convex_hull_3.tex +++ b/Convex_hull_3/doc_tex/Convex_hull_3/convex_hull_3.tex @@ -37,7 +37,7 @@ The following program computes the convex hull of a set of 250 random points chosen from a sphere of radius 100. It then determines if the resulting hull is a segment or a polyhedron. -\ccIncludeExampleCode{Convex_hull_3/quickhull_3_ex.C} +\ccIncludeExampleCode{Convex_hull_3/quickhull_3_ex.cpp} \section{Incremental Convex Hull Construction} @@ -67,7 +67,7 @@ example. \subsection{Example} -\ccIncludeExampleCode{Convex_hull_3/incremental_hull_3_demo.C} +\ccIncludeExampleCode{Convex_hull_3/incremental_hull_3_demo.cpp} \section{Dynamic Convex Hull Construction} \ccIndexSubitem{convex hull, 3D}{dynamic} @@ -86,6 +86,6 @@ infinite vertex of the triangulation are on the convex hull but it may be that not all of them are vertices of the hull. \subsection{Example} -\ccIncludeExampleCode{Convex_hull_3/dynamic_hull_3_ex.C} +\ccIncludeExampleCode{Convex_hull_3/dynamic_hull_3_ex.cpp} diff --git a/Convex_hull_3/doc_tex/Convex_hull_3_ref/convex_hull_3.tex b/Convex_hull_3/doc_tex/Convex_hull_3_ref/convex_hull_3.tex index b177489a7e7..92597480d34 100644 --- a/Convex_hull_3/doc_tex/Convex_hull_3_ref/convex_hull_3.tex +++ b/Convex_hull_3/doc_tex/Convex_hull_3_ref/convex_hull_3.tex @@ -89,7 +89,7 @@ hull is a segment or a polyhedron. Notice that the traits class is not necessary in the call to \ccc{convex_hull_3} but is used in the definition of \ccc{Polyhedron_3}. -\ccIncludeExampleCode{Convex_hull_3/quickhull_3_ex.C} +\ccIncludeExampleCode{Convex_hull_3/quickhull_3_ex.cpp} \ccIndexSubitemEnd{convex hull, 3D}{quickhull} \ccIndexMainItemEnd{quickhull, 3D} diff --git a/Convex_hull_3/doc_tex/Convex_hull_3_ref/convex_hull_incremental_3.tex b/Convex_hull_3/doc_tex/Convex_hull_3_ref/convex_hull_incremental_3.tex index 776bae6ea32..2e242b3a953 100644 --- a/Convex_hull_3/doc_tex/Convex_hull_3_ref/convex_hull_incremental_3.tex +++ b/Convex_hull_3/doc_tex/Convex_hull_3_ref/convex_hull_incremental_3.tex @@ -68,7 +68,7 @@ worst case and $O(n \log n)$ expected time. The following example computes the convex hull of a set of 250 random points chosen uniformly in a sphere of radius 100. -\ccIncludeExampleCode{Convex_hull_3/incremental_hull_3_ex.C} +\ccIncludeExampleCode{Convex_hull_3/incremental_hull_3_ex.cpp} \ccIndexSubitemEnd{convex hull, 3D}{incremental} \ccIndexMainItemEnd{convex hull, 3D} diff --git a/Convex_hull_3/examples/Convex_hull_3/dynamic_hull_3_ex.C b/Convex_hull_3/examples/Convex_hull_3/dynamic_hull_3_ex.cpp similarity index 100% rename from Convex_hull_3/examples/Convex_hull_3/dynamic_hull_3_ex.C rename to Convex_hull_3/examples/Convex_hull_3/dynamic_hull_3_ex.cpp diff --git a/Convex_hull_3/examples/Convex_hull_3/incremental_hull_3_ex.C b/Convex_hull_3/examples/Convex_hull_3/incremental_hull_3_ex.cpp similarity index 100% rename from Convex_hull_3/examples/Convex_hull_3/incremental_hull_3_ex.C rename to Convex_hull_3/examples/Convex_hull_3/incremental_hull_3_ex.cpp diff --git a/Convex_hull_3/examples/Convex_hull_3/quickhull_3_ex.C b/Convex_hull_3/examples/Convex_hull_3/quickhull_3_ex.cpp similarity index 100% rename from Convex_hull_3/examples/Convex_hull_3/quickhull_3_ex.C rename to Convex_hull_3/examples/Convex_hull_3/quickhull_3_ex.cpp