mirror of https://github.com/CGAL/cgal
125 lines
3.4 KiB
C++
125 lines
3.4 KiB
C++
// ============================================================================
|
|
//
|
|
// Copyright (c) 1997 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 : $CGAL_Revision$
|
|
// release_date : $CGAL_Date$
|
|
//
|
|
// file : include/CGAL/Triangulation_2_traits_3.h
|
|
// source : $RCSfile$
|
|
// revision : $Revision$
|
|
// revision_date : $Date$
|
|
// author(s) : Mariette Yvinec
|
|
//
|
|
// coordinator : Mariette Yvinec <Mariette.Yvinec@sophia.inria.fr>
|
|
//
|
|
//
|
|
// ============================================================================
|
|
|
|
#ifndef CGAL_TRIANGULATION_2_TRAITS_3_H
|
|
#define CGAL_TRIANGULATION_2_TRAITS_3_H
|
|
|
|
|
|
#include <CGAL/Point_3.h>
|
|
#include <CGAL/Segment_3.h>
|
|
#include <CGAL/Triangle_3.h>
|
|
|
|
|
|
#include <CGAL/triangulation_assertions.h>
|
|
|
|
CGAL_BEGIN_NAMESPACE
|
|
|
|
template<class R>
|
|
class Compare_yz_3
|
|
{
|
|
public:
|
|
typedef typename R::Point_3 Point;
|
|
|
|
Comparison_result operator() (Point p, Point q){
|
|
Comparison_result r;
|
|
r = CGAL::compare_y(p,q);
|
|
if (r == EQUAL) r = CGAL::compare_z(p,q);
|
|
return r;
|
|
}
|
|
};
|
|
|
|
|
|
template <class R>
|
|
class Side_of_oriented_circle_2_3
|
|
{
|
|
// 2d triangulation needs a side_of_oriented_circle
|
|
// that in fact is a side_of_bounded_circle
|
|
// meaning that
|
|
// bounded side of circle = positive side
|
|
public:
|
|
typedef typename R::Point_3 Point;
|
|
typedef typename R::Coplanar_side_of_bounded_circle_3
|
|
Side_of_bounded_circle_2_3;
|
|
Oriented_side operator() (const Point& p,
|
|
const Point& q,
|
|
const Point& r,
|
|
const Point& s) {
|
|
Side_of_bounded_circle_2_3 side;
|
|
Bounded_side bs = side(p,q,r,s);
|
|
return ( bs == ON_UNBOUNDED_SIDE) ? ON_NEGATIVE_SIDE :
|
|
(bs == ON_BOUNDED_SIDE ) ? ON_POSITIVE_SIDE :
|
|
ON_ORIENTED_BOUNDARY;
|
|
}
|
|
};
|
|
|
|
|
|
|
|
template < class R >
|
|
class Triangulation_2_traits_3
|
|
{
|
|
public:
|
|
typedef R Rep;
|
|
typedef typename Rep::Point_3 Point_2;
|
|
typedef typename Rep::Segment_3 Segment_2;
|
|
typedef typename Rep::Triangle_3 Triangle_2;
|
|
|
|
typedef typename Rep::Compare_x_3 Compare_x_2;
|
|
typedef Compare_yz_3<Rep> Compare_y_2;
|
|
typedef typename Rep::Coplanar_orientation_3 Orientation_2;
|
|
typedef Side_of_oriented_circle_2_3<Rep> Side_of_oriented_circle_2;
|
|
typedef typename Rep::Construct_segment_3 Construct_segment_2;
|
|
typedef typename Rep::Construct_triangle_3 Construct_triangle_2;
|
|
|
|
// for compatibility with previous versions
|
|
typedef Point_2 Point;
|
|
typedef Segment_2 Segment;
|
|
typedef Triangle_2 Triangle;
|
|
|
|
Compare_x_2
|
|
compare_x_2_object() const
|
|
{ return Compare_x_2();}
|
|
|
|
Compare_y_2
|
|
compare_y_2_object() const
|
|
{ return Compare_y_2();}
|
|
|
|
Orientation_2
|
|
orientation_2_object() const
|
|
{ return Orientation_2();}
|
|
|
|
Side_of_oriented_circle_2
|
|
side_of_oriented_circle_2_object() const
|
|
{return Side_of_oriented_circle_2();}
|
|
|
|
Construct_segment_2 construct_segment_2_object() const
|
|
{return Construct_segment_2();}
|
|
|
|
Construct_triangle_2 construct_triangle_2_object() const
|
|
{return Construct_triangle_2();}
|
|
|
|
};
|
|
|
|
CGAL_END_NAMESPACE
|
|
#endif // CGAL_TRIANGULATION_2_TRAITS_3_H
|