cgal/Interpolation/examples/Interpolation
Mael Rouxel-Labbé 9fbf2720ce Annihilated Regular_triangulation_euclidean_traits_23 across all packages
Left a little bit alive in the tests and in the Triangulation_23/doc
2017-06-28 10:15:30 +02:00
..
data
CMakeLists.txt improve the name of projects in cmake scripts of examples 2016-09-08 00:02:55 +02:00
README
interpolation_2.cpp Improved Interpolation readability (no real changes) 2017-06-28 10:14:35 +02:00
linear_interpolation_2.cpp Improved Interpolation readability (no real changes) 2017-06-28 10:14:35 +02:00
nn_coordinates_2.cpp Improved Interpolation readability (no real changes) 2017-06-28 10:14:35 +02:00
nn_coordinates_3.cpp Improved Interpolation readability (no real changes) 2017-06-28 10:14:35 +02:00
rn_coordinates_2.cpp Annihilated Regular_triangulation_euclidean_traits_23 across all packages 2017-06-28 10:15:30 +02:00
sibson_interpolation_2.cpp Improved Interpolation readability (no real changes) 2017-06-28 10:14:35 +02:00
surface_neighbor_coordinates_3.cpp Improved Interpolation readability (no real changes) 2017-06-28 10:14:35 +02:00

README

To compile and run all these examples type : make
To compile and run only some of them type  : make name-of_wanted_example
 
nn_coordinates_2: shows how to compute 2D natural coordinates 
	given a 2D Delaunay triangulation  and a query point.

nn_coordinates_3: shows how to compute 3D natural coordinates 
	given a 3D Delaunay triangulation  and a query point.

rn_coordinates_2: shows how to compute 2D regular (natural) coordinates 
	given a 2D Regular triangulation  and a (weighted) query point.

linear_interpolation_2: interpolates a linear function using the 
	linear_interpolation function and 2D natural neighbor coordinates.

sibson_interpolation_2: interpolates a spherical function using the 
	sibson_gradient_fitting and sibson_c1_interpolation function with 
	2D natural neighbor coordinates.

surface_neighbor_coordinates_3: shows how to compute natural neighbor 
	coordinates on surfaces. Example of the sphere.

interpolation_2: this example allows to numerically compare the error 
	committed by the different interpolation function when interpolating 
	a predefined function on random points.