// Copyright (c) 2016-2018 INRIA Nancy (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.2/Hyperbolic_triangulation_2/include/CGAL/Hyperbolic_triangulation_face_base_2.h $ // $Id: Hyperbolic_triangulation_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) : Monique Teillaud // Mikhail Bogdanov #ifndef CGAL_HYPERBOLIC_TRIANGULATION_FACE_BASE_2_H #define CGAL_HYPERBOLIC_TRIANGULATION_FACE_BASE_2_H #include #include #include #include #include namespace CGAL { template > class Hyperbolic_triangulation_face_base_2 : public Fb { public: typedef Gt Geom_traits; typedef typename Fb::Vertex_handle Vertex_handle; typedef typename Fb::Face_handle Face_handle; template struct Rebind_TDS { typedef typename Fb::template Rebind_TDS::Other Fb2; typedef Hyperbolic_triangulation_face_base_2 Other; }; public: Hyperbolic_triangulation_face_base_2() : Fb() {} Hyperbolic_triangulation_face_base_2(Vertex_handle v0, Vertex_handle v1, Vertex_handle v2) : Fb(v0, v1, v2) {} Hyperbolic_triangulation_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) {} static int ccw(int i) {return Triangulation_cw_ccw_2::ccw(i);} static int cw(int i) {return Triangulation_cw_ccw_2::cw(i);} CGAL::Object& tds_data() { return this->_tds_data; } const CGAL::Object& tds_data() const { return this->_tds_data; } private: CGAL::Object _tds_data; }; } // namespace CGAL #endif //CGAL_HYPERBOLIC_TRIANGULATION_FACE_BASE_2_H