mirror of https://github.com/CGAL/cgal
34 lines
868 B
C++
34 lines
868 B
C++
// Copyright (c) 1997-2010 INRIA Sophia-Antipolis (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org)
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
//
|
|
// Author(s) : Mariette Yvinec
|
|
|
|
#ifndef CGAL_PROJECTION_TRAITS_XY_3_H
|
|
#define CGAL_PROJECTION_TRAITS_XY_3_H
|
|
|
|
#include <CGAL/Kernel_23/internal/Projection_traits_3.h>
|
|
#include <CGAL/Triangulation_structural_filtering_traits.h>
|
|
|
|
namespace CGAL {
|
|
|
|
template < class R >
|
|
class Projection_traits_xy_3
|
|
: public internal::Projection_traits_3<R,2>
|
|
{};
|
|
|
|
template < class R >
|
|
struct Triangulation_structural_filtering_traits<Projection_traits_xy_3<R> > {
|
|
typedef typename Triangulation_structural_filtering_traits<R>::Use_structural_filtering_tag Use_structural_filtering_tag;
|
|
};
|
|
|
|
} //namespace CGAL
|
|
|
|
#endif // CGAL_PROJECTION_TRAITS_XY_3_H
|