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
This commit is contained in:
Sylvain Pion 2007-03-10 14:34:05 +00:00
parent d11d632ee5
commit 23edc11d3b
145 changed files with 147 additions and 147 deletions

View File

@ -1,4 +1,4 @@
// file: examples/Alpha_shapes_2/example_alpha.C
// file: examples/Alpha_shapes_2/example_alpha.cpp
/***********************************************************************

View File

@ -1,4 +1,4 @@
// file: examples/Alpha_shapes_2/example_weight.C
// file: examples/Alpha_shapes_2/example_weight.cpp
/***********************************************************************

View File

@ -1,4 +1,4 @@
// file: examples/Apollonius_graph_2/ag2_exact_traits.C
// file: examples/Apollonius_graph_2/ag2_exact_traits.cpp
#include <CGAL/basic.h>

View File

@ -1,4 +1,4 @@
// file: examples/Apollonius_graph_2/ag2_exact_traits_sqrt.C
// file: examples/Apollonius_graph_2/ag2_exact_traits_sqrt.cpp
#include <CGAL/basic.h>

View File

@ -1,4 +1,4 @@
// file: examples/Apollonius_graph_2/ag2_filtered_traits_no_hidden.C
// file: examples/Apollonius_graph_2/ag2_filtered_traits_no_hidden.cpp
#include <CGAL/basic.h>

View File

@ -1,4 +1,4 @@
// file: examples/Apollonius_graph_2/ag2_hierarchy.C
// file: examples/Apollonius_graph_2/ag2_hierarchy.cpp
#include <CGAL/basic.h>

View File

@ -1,4 +1,4 @@
// file: examples/Box_intersection_d/box_grid.C
// file: examples/Box_intersection_d/box_grid.cpp
#include <CGAL/box_intersection_d.h>
#include <vector>
#include <algorithm>

View File

@ -1,4 +1,4 @@
// file: examples/Box_intersection_d/custom_box_grid.C
// file: examples/Box_intersection_d/custom_box_grid.cpp
#include <CGAL/box_intersection_d.h>
#include <vector>
#include <algorithm>

View File

@ -1,4 +1,4 @@
// file: examples/Box_intersection_d/minimal.C
// file: examples/Box_intersection_d/minimal.cpp
#include <CGAL/box_intersection_d.h>
#include <CGAL/Bbox_2.h>
#include <iostream>

View File

@ -1,4 +1,4 @@
// file: examples/Box_intersection_d/minimal_self.C
// file: examples/Box_intersection_d/minimal_self.cpp
#include <CGAL/box_intersection_d.h>
#include <CGAL/Bbox_2.h>
#include <iostream>

View File

@ -1,4 +1,4 @@
// file: examples/Box_intersection_d/proximity_custom_box_traits.C
// file: examples/Box_intersection_d/proximity_custom_box_traits.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/box_intersection_d.h>
#include <CGAL/point_generators_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Box_intersection_d/triangle_self_intersect.C
// file: examples/Box_intersection_d/triangle_self_intersect.cpp
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/intersections.h>
#include <CGAL/point_generators_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Box_intersection_d/triangle_self_intersect_pointers.C
// file: examples/Box_intersection_d/triangle_self_intersect_pointers.cpp
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/intersections.h>
#include <CGAL/point_generators_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Circulator/circulator_prog1.C
// file: examples/Circulator/circulator_prog1.cpp
#include <CGAL/basic.h>
#include <cassert>

View File

@ -1,4 +1,4 @@
// file: examples/Circulator/circulator_prog2.C
// file: examples/Circulator/circulator_prog2.cpp
#include <CGAL/basic.h>
#include <cassert>

View File

@ -1,4 +1,4 @@
// file: examples/Circulator/circulator_prog3.C
// file: examples/Circulator/circulator_prog3.cpp
#include <CGAL/basic.h>
#include <cassert>

View File

@ -1,4 +1,4 @@
// file: examples/Convex_hull_2/ch_example_from_cin_to_cout.C
// file: examples/Convex_hull_2/ch_example_from_cin_to_cout.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/ch_graham_andrew.h>

View File

@ -1,4 +1,4 @@
// file: examples/Convex_hull_2/ch_example_timing.C
// file: examples/Convex_hull_2/ch_example_timing.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/convex_hull_traits_2.h>

View File

@ -1,4 +1,4 @@
// file: examples/Convex_hull_2/ch_graham_anderson.C
// file: examples/Convex_hull_2/ch_graham_anderson.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/ch_graham_andrew.h>

View File

@ -1,4 +1,4 @@
// file: examples/Convex_hull_3/dynamic_hull_3_ex.C
// file: examples/Convex_hull_3/dynamic_hull_3_ex.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Filtered_kernel.h>

View File

@ -1,4 +1,4 @@
// file: examples/Convex_hull_3/incremental_hull_3_ex.C
// file: examples/Convex_hull_3/incremental_hull_3_ex.cpp
#include <CGAL/Homogeneous.h>
#include <CGAL/point_generators_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Convex_hull_3/ch_quickhull_3_ex.C
// file: examples/Convex_hull_3/ch_quickhull_3_ex.cpp
#include <CGAL/Homogeneous.h>
#include <CGAL/point_generators_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_simple.C
// file: examples/Polyhedron/polyhedron_prog_simple.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Gmpq.h>

View File

@ -1,4 +1,4 @@
// file: examples/Generator/rcs_example.C
// file: examples/Generator/rcs_example.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/point_generators_2.h>

View File

@ -1,4 +1,4 @@
// file: examples/Generator/generators_example2.C
// file: examples/Generator/generators_example2.cpp
#include <CGAL/Simple_cartesian.h>
#include <cassert>

View File

@ -1,4 +1,4 @@
// file : examples/Generator/random_polygon_ex.C
// file : examples/Generator/random_polygon_ex.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/Polygon_2.h>

View File

@ -1,4 +1,4 @@
// file: examples/Generator/random_poly_example.C
// file: examples/Generator/random_poly_example.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/point_generators_2.h>

View File

@ -1,4 +1,4 @@
// file: examples/Generator/Segment_generator_example1.C
// file: examples/Generator/Segment_generator_example1.cpp
#include <CGAL/Simple_cartesian.h>
#include <cassert>

View File

@ -1,4 +1,4 @@
// file: examples/Generator/Segment_generator_example2.C
// file: examples/Generator/Segment_generator_example2.cpp
// CGAL example program for the generic segment generator
// using precomputed point locations.

View File

@ -1,4 +1,4 @@
// file: examples/HalfedgeDS/hds_prog_color.C
// file: examples/HalfedgeDS/hds_prog_color.cpp
#include <CGAL/HalfedgeDS_items_2.h>
#include <CGAL/HalfedgeDS_default.h>

View File

@ -1,4 +1,4 @@
// file: examples/HalfedgeDS/hds_prog_compact.C
// file: examples/HalfedgeDS/hds_prog_compact.cpp
#include <CGAL/HalfedgeDS_items_2.h>
#include <CGAL/HalfedgeDS_vector.h>

View File

@ -1,4 +1,4 @@
// file: examples/HalfedgeDS/hds_prog_compact2.C
// file: examples/HalfedgeDS/hds_prog_compact2.cpp
#include <CGAL/HalfedgeDS_items_2.h>
#include <CGAL/HalfedgeDS_list.h>

View File

@ -1,4 +1,4 @@
// file: examples/HalfedgeDS/hds_prog_default.C
// file: examples/HalfedgeDS/hds_prog_default.cpp
#include <CGAL/HalfedgeDS_default.h>
#include <CGAL/HalfedgeDS_decorator.h>

View File

@ -1,4 +1,4 @@
// file: examples/HalfedgeDS/hds_prog_edge_iterator.C
// file: examples/HalfedgeDS/hds_prog_edge_iterator.cpp
#include <CGAL/HalfedgeDS_default.h>
#include <CGAL/HalfedgeDS_decorator.h>

View File

@ -1,4 +1,4 @@
// file: examples/HalfedgeDS/hds_prog_graph.C
// file: examples/HalfedgeDS/hds_prog_graph.cpp
#include <CGAL/HalfedgeDS_min_items.h>
#include <CGAL/HalfedgeDS_default.h>

View File

@ -1,4 +1,4 @@
// file: examples/HalfedgeDS/hds_prog_graph2.C
// file: examples/HalfedgeDS/hds_prog_graph2.cpp
#include <CGAL/HalfedgeDS_min_items.h>
#include <CGAL/HalfedgeDS_default.h>

View File

@ -1,4 +1,4 @@
// file: examples/HalfedgeDS/hds_prog_halfedge_iterator.C
// file: examples/HalfedgeDS/hds_prog_halfedge_iterator.cpp
#include <CGAL/HalfedgeDS_default.h>
#include <CGAL/HalfedgeDS_decorator.h>

View File

@ -1,4 +1,4 @@
//file: examples/Interpolation/interpolation_2.C
//file: examples/Interpolation/interpolation_2.cpp
// compares the result of several interpolation methods
// Author: Julia

View File

@ -1,4 +1,4 @@
// file: examples/Interval_skip_list/intervals.C
// file: examples/Interval_skip_list/intervals.cpp
#include <CGAL/Interval_skip_list.h>
#include <CGAL/Interval_skip_list_interval.h>

View File

@ -1,4 +1,4 @@
// file: examples/Interval_skip_list/terrain.C
// file: examples/Interval_skip_list/terrain.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Delaunay_triangulation_2.h>

View File

@ -1,4 +1,4 @@
// file: examples/Kernel_23/MyKernel.C
// file: examples/Kernel_23/MyKernel.cpp
#include <CGAL/basic.h>
#include <CGAL/Filtered_kernel.h>

View File

@ -1,4 +1,4 @@
// file: examples/Kernel_23/test_delaunay_2.C
// file: examples/Kernel_23/test_delaunay_2.cpp
// small example for compilation
// check of Delaunay_triangulation_2 using the kernel concept

View File

@ -1,6 +1,6 @@
// file: examples/Kernel_23/test_polyhedron_prog_incr_builder.C
// file: examples/Kernel_23/test_polyhedron_prog_incr_builder.cpp
// original version see examples/Polyhedron/polyhedron_prog_incr_builder.C
// original version see examples/Polyhedron/polyhedron_prog_incr_builder.cpp
// this time we test compilation with the
// kernel concept archetype
// we use interface restrictions in this example

View File

@ -1,6 +1,6 @@
// file: examples/Kernel_23/test_polyhedron_prog_incr_builder_own_archetype.C
// file: examples/Kernel_23/test_polyhedron_prog_incr_builder_own_archetype.cpp
// original version see examples/Polyhedron/polyhedron_prog_incr_builder.C
// original version see examples/Polyhedron/polyhedron_prog_incr_builder.cpp
// this time we test compilation with
// an own archetype that uses functionality
// provided by the kernel archetype

View File

@ -1,4 +1,4 @@
// file: examples/Largest_empty_rect_2/Largest_empty_rect_2.C
// file: examples/Largest_empty_rect_2/Largest_empty_rect_2.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/Iso_rectangle_2.h>

View File

@ -1,4 +1,4 @@
// file: examples/Matrix_search/all_furthest_neighbors_2_example.C
// file: examples/Matrix_search/all_furthest_neighbors_2_example.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/Polygon_2.h>

View File

@ -1,4 +1,4 @@
// file: examples/Matrix_search/rectangular_p_center_2_example.C
// file: examples/Matrix_search/rectangular_p_center_2_example.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/point_generators_2.h>

View File

@ -1,4 +1,4 @@
// file: examples/Matrix_search/sorted_matrix_search_example.C
// file: examples/Matrix_search/sorted_matrix_search_example.cpp
#include <CGAL/Random.h>
#include <CGAL/Cartesian_matrix.h>

View File

@ -1,4 +1,4 @@
// file: examples/Min_circle_2/min_circle_2.C
// file: examples/Min_circle_2/min_circle_2.cpp
// includes
#include <CGAL/Homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Min_sphere_d/min_sphere_d.C
// file: examples/Min_sphere_d/min_sphere_d.cpp
#include <CGAL/Cartesian_d.h>
#include <iostream>

View File

@ -1,4 +1,4 @@
// file: examples/Min_sphere_of_spheres_d/benchmark.C
// file: examples/Min_sphere_of_spheres_d/benchmark.cpp
#include <iostream>
#include <ctime>

View File

@ -1,4 +1,4 @@
// file: examples/Min_sphere_of_spheres_d/min_sphere_of_spheres_d_example_2.C
// file: examples/Min_sphere_of_spheres_d/min_sphere_of_spheres_d_example_2.cpp
// Computes the minsphere of some random spheres.
// This example illustrates how to use CGAL::Point_2 and CGAL::

View File

@ -1,4 +1,4 @@
// file: examples/Min_sphere_of_spheres_d/min_sphere_of_spheres_d_example_3.C
// file: examples/Min_sphere_of_spheres_d/min_sphere_of_spheres_d_example_3.cpp
// Computes the minsphere of some random spheres.
// This example illustrates how to use CGAL::Point_3 and CGAL::

View File

@ -1,4 +1,4 @@
// file: examples/Min_sphere_of_spheres_d/min_sphere_of_spheres_d_example_d.C
// file: examples/Min_sphere_of_spheres_d/min_sphere_of_spheres_d_example_d.cpp
// Computes the minsphere of some random spheres.
// This example illustrates how to use CGAL::Point_d and CGAL::

View File

@ -1,4 +1,4 @@
// file : examples/Nef_2/construction.C
// file : examples/Nef_2/construction.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Filtered_extended_homogeneous.h>

View File

@ -1,4 +1,4 @@
// file : examples/Nef_2/polylines.C
// file : examples/Nef_2/polylines.cpp
#include <CGAL/Gmpq.h>
#include <CGAL/Lazy_exact_nt.h>

View File

@ -1,4 +1,4 @@
// file : examples/Nef_2/simple_intersection.C
// file : examples/Nef_2/simple_intersection.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Filtered_extended_homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/complex_construction.C
// file: examples/Nef_3/complex_construction.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/construction.C
// file: examples/Nef_3/construction.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Extended_homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/exploration_SM.C
// file: examples/Nef_3/exploration_SM.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/extended_kernel.C
// file: examples/Nef_3/extended_kernel.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Extended_homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/interface_polyhedron.C
// file: examples/Nef_3/interface_polyhedron.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/nefIO.C
// file: examples/Nef_3/nefIO.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/point_location.C
// file: examples/Nef_3/point_location.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/point_set_operations.C
// file: examples/Nef_3/point_set_operations.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Extended_homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/shell_exploration.C
// file: examples/Nef_3/shell_exploration.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Nef_3/simple.C
// file: examples/Nef_3/simple.cpp
#include <CGAL/Gmpz.h>
#include <CGAL/Homogeneous.h>

View File

@ -1,4 +1,4 @@
// file: examples/Partition_2/approx_convex_partition.C
// file: examples/Partition_2/approx_convex_partition.cpp
#include <CGAL/basic.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

View File

@ -1,4 +1,4 @@
// file: examples/Partition_2/greene_approx_convex_partition_2.C
// file: examples/Partition_2/greene_approx_convex_partition_2.cpp
#include <CGAL/basic.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

View File

@ -1,4 +1,4 @@
// file: examples/Partition_2/optimal_convex_partition_2.C
// file: examples/Partition_2/optimal_convex_partition_2.cpp
#include <CGAL/basic.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

View File

@ -1,4 +1,4 @@
// file: examples/Partition_2/y_monotone_partition_2.C
// file: examples/Partition_2/y_monotone_partition_2.cpp
#include <CGAL/basic.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polygon/Example.C
// file: examples/Polygon/Example.cpp
//-----------------------------------------------------------------------//
// This is just a simple example that demonstrates how to use the

View File

@ -1,4 +1,4 @@
// file: examples/Polygon/Polygon.C
// file: examples/Polygon/Polygon.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/Polygon_2.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polygon/polygon_algorithms.C
// file: examples/Polygon/polygon_algorithms.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/Polygon_2_algorithms.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_color.C
// file: examples/Polyhedron/polyhedron_prog_color.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/IO/Color.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_cube.C
// file: examples/Polyhedron/polyhedron_prog_cube.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Polyhedron_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_incr_builder.C
// file: examples/Polyhedron/polyhedron_prog_incr_builder.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Polyhedron_incremental_builder_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_normals.C
// file: examples/Polyhedron/polyhedron_prog_normals.cpp
#include <CGAL/Homogeneous.h>
#include <CGAL/Polyhedron_traits_with_normals_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_off.C
// file: examples/Polyhedron/polyhedron_prog_off.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Polyhedron_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_planes.C
// file: examples/Polyhedron/polyhedron_prog_planes.cpp
#include <CGAL/Homogeneous.h>
#include <CGAL/Polyhedron_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_simple.C
// file: examples/Polyhedron/polyhedron_prog_simple.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Polyhedron_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_subdiv.C
// file: examples/Polyhedron/polyhedron_prog_subdiv.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/Polyhedron_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_subdiv_with_boundary.C
// file: examples/Polyhedron/polyhedron_prog_subdiv_with_boundary.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/Polyhedron_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_tetra.C
// file: examples/Polyhedron/polyhedron_prog_tetra.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Polyhedron_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_traits.C
// file: examples/Polyhedron/polyhedron_prog_traits.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/Polyhedron_traits_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron/polyhedron_prog_vector.C
// file: examples/Polyhedron/polyhedron_prog_vector.cpp
#include <CGAL/Cartesian.h>
#include <CGAL/HalfedgeDS_vector.h>

View File

@ -1,4 +1,4 @@
// file: examples/intersection.C
// file: examples/intersection.cpp
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Polyhedron_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/iv2off.C
// file: examples/Polyhedron_IO/iv2off.cpp
// Converts Geometry Information in Inventor files (*.iv) into OFF format.
// The scanner triggers on Coordinate3, IndexedFaceSet, and IndexedLineSet

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/off2iv.C
// file: examples/Polyhedron_IO/off2iv.cpp
// Convert from OFF format to OpenInventor (.iv) format.

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/off2off.C
// file: examples/Polyhedron_IO/off2off.cpp
// Copies a file in OFF format.

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/off2stl.C
// file: examples/Polyhedron_IO/off2stl.cpp
// Convert from OFF format to StereoLithography StL format.

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/off2vrml.C
// file: examples/Polyhedron_IO/off2vrml.cpp
// Convert from OFF format to VRML (.wrl) 1.0 or 2.0 format.

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/off2wav.C
// file: examples/Polyhedron_IO/off2wav.cpp
// Convert from OFF format to Wavefront (.obj) format.

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/off_bbox.C
// file: examples/Polyhedron_IO/off_bbox.cpp
// computes bbox of an OFF object.

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/off_glue.C
// file: examples/Polyhedron_IO/off_glue.cpp
// Glue vertices of a polyhedron together that have equal coordinate values.

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/off_transform.C
// file: examples/Polyhedron_IO/off_transform.cpp
// Applies translation and scaling to an OFF object.

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/polyhedron2vrml.C
// file: examples/Polyhedron_IO/polyhedron2vrml.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Polyhedron_3.h>

View File

@ -1,4 +1,4 @@
// file: examples/Polyhedron_IO/polyhedron_copy.C
// file: examples/Polyhedron_IO/polyhedron_copy.cpp
// Copies a CGAL::Polyhedron_3 from OFF format to OFF format.

View File

@ -1,4 +1,4 @@
//file: examples/Polyhedron_IO/terr_trian.C
//file: examples/Polyhedron_IO/terr_trian.cpp
// Delaunay Triangulation of a set of 3D points in the xy-plane.
// (Terrain triangulation)

View File

@ -1,4 +1,4 @@
// file: examples/STL_Extension/min_element_if_example_noheader.C
// file: examples/STL_Extension/min_element_if_example_noheader.cpp
#include <CGAL/algorithm.h>
#include <CGAL/function_objects.h>

Some files were not shown because too many files have changed in this diff Show More