// Copyright (c) 2011 Max-Planck-Institute Saarbruecken (Germany). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.2/Convex_hull_3/include/CGAL/Convex_hull_face_base_2.h $ // $Id: Convex_hull_face_base_2.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Andreas Fabri // face of a triangulation of any dimension <=3 #ifndef CGAL_CONVEX_HULL_FACE_BASE_2_H #define CGAL_CONVEX_HULL_FACE_BASE_2_H #include #include #include namespace CGAL { template < typename Info_, typename GT, typename Fb = Triangulation_face_base_2 > class Convex_hull_face_base_2 : public Fb { Info_ _info; public: typedef typename Fb::Vertex_handle Vertex_handle; typedef typename Fb::Face_handle Face_handle; typedef Info_ Info; typename std::list::iterator it; std::list points; template < typename TDS2 > struct Rebind_TDS { typedef typename Fb::template Rebind_TDS::Other Fb2; typedef Convex_hull_face_base_2 Other; }; Convex_hull_face_base_2() : Fb(), _info(0) {} Convex_hull_face_base_2(Vertex_handle v0, Vertex_handle v1, Vertex_handle v2) : Fb(v0, v1, v2), _info(0) {} Convex_hull_face_base_2(Vertex_handle v0, Vertex_handle v1, Vertex_handle v2, Face_handle n0, Face_handle n1, Face_handle n2 ) : Fb(v0, v1, v2, n0, n1, n2), _info(0) {} const Info& info() const { return _info; } Info& info() { return _info; } }; } //namespace CGAL #endif // CGAL_CONVEX_HULL_FACE_BASE_2_H