mirror of https://github.com/CGAL/cgal
Fixed point typedef in Tr_3/benchmarks
This commit is contained in:
parent
1e30446d7e
commit
42fa20881c
|
|
@ -13,9 +13,9 @@
|
|||
#include <iostream>
|
||||
|
||||
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
|
||||
typedef CGAL::Delaunay_triangulation_3<K> DT;
|
||||
typedef K::Point_3 Point_3;
|
||||
typedef CGAL::Timer Timer;
|
||||
typedef CGAL::Delaunay_triangulation_3<K> DT;
|
||||
typedef DT::Point Point_3;
|
||||
typedef CGAL::Timer Timer;
|
||||
|
||||
int main()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@
|
|||
#include <iostream>
|
||||
|
||||
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
|
||||
typedef CGAL::Delaunay_triangulation_3<K> DT;
|
||||
typedef K::Point_3 Point_3;
|
||||
typedef CGAL::Timer Timer;
|
||||
typedef CGAL::Creator_uniform_3<double,Point_3> Creator;
|
||||
typedef CGAL::Delaunay_triangulation_3<K> DT;
|
||||
typedef DT::Point Point_3;
|
||||
typedef CGAL::Timer Timer;
|
||||
typedef CGAL::Creator_uniform_3<double,Point_3> Creator;
|
||||
|
||||
int main(int,char** argv)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue