- Compute_area_divided_by_pi
- Compute_squared_length_divided_by_pi_square
- Compute_approximate_area
- Compute_approximate_squared_length
- Compute_approximate_angle
This commit is contained in:
Pedro Machado Manhaes de Castro 2006-08-21 13:15:08 +00:00
parent 487f2d0b9d
commit d64ec0de9f
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#include <CGAL/Quotient.h>
#include <CGAL/_test_sphere_predicates.h>
#include <CGAL/_test_sphere_constructions.h>
#include <CGAL/_test_sphere_compute.h>
#include <CGAL/Polynomials_1_3.h>
#include <CGAL/Polynomials_2_3.h>
#include <CGAL/Polynomials_for_line_3.h>
@ -18,5 +19,6 @@ int main()
SK1 sk1;
_test_spherical_kernel_predicates(sk1);
_test_spherical_kernel_construct(sk1);
_test_spherical_kernel_compute(sk1);
return 0;
}