mirror of https://github.com/CGAL/cgal
first entry for the test of regular triangulation.
This commit is contained in:
parent
c318b9dec1
commit
181a3ea5fe
|
|
@ -0,0 +1,51 @@
|
|||
// ============================================================================
|
||||
//
|
||||
// Copyright (c) 1998 The CGAL Consortium
|
||||
//
|
||||
// This software and related documentation is part of an INTERNAL release
|
||||
// of the Computational Geometry Algorithms Library (CGAL). It is not
|
||||
// intended for general use.
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// release :
|
||||
// release_date :
|
||||
//
|
||||
// source :
|
||||
// file : test_triangulation_2.C
|
||||
// revision :
|
||||
// revision_date :
|
||||
// author(s) : Francois Rebufat (Francois.Rebufat@sophia.inria.fr)
|
||||
//
|
||||
// coordinator : INRIA Sophia-Antipolis
|
||||
// ============================================================================
|
||||
|
||||
|
||||
|
||||
#include <CGAL/_test_types.h>
|
||||
|
||||
//#include <CGAL/_test_types.C>
|
||||
|
||||
|
||||
|
||||
#include <CGAL/Weighted_point_2.h>
|
||||
|
||||
#include <CGAL/Regular_triangulation_euclidean_traits_2.h>
|
||||
#include <CGAL/Regular_triangulation_2.h>
|
||||
#include <CGAL/_test_cls_regular_triangulation_2.C>
|
||||
|
||||
int main()
|
||||
{
|
||||
cout << " with CGAL_Regular_triangulation_euclidean_traits_2 : " << endl;
|
||||
typedef CGAL_Regular_triangulation_euclidean_traits_2
|
||||
<Test_rep_cartesian, double> RGt2;
|
||||
typedef CGAL_Triangulation_vertex_base_2<RGt2> RVb2;
|
||||
typedef CGAL_Regular_triangulation_face_base_2<RGt2> RFb2;
|
||||
typedef CGAL_Triangulation_default_data_structure_2<RGt2,RVb2,RFb2> RTds2;
|
||||
typedef CGAL_Regular_triangulation_2<RGt2,RTds2> RCls2;
|
||||
|
||||
CGAL__test_cls_reg_triangulation_2( RCls2() );
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue