// Copyright (c) 2009, 2011 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // You can redistribute it and/or modify it under the terms of the GNU // General Public License as published by the Free Software Foundation, // either version 3 of the License, or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // // // Author(s) : Pierre Alliez, Stephane Tayeb, Sebastien Loriot // //****************************************************************************** // File Description : // //****************************************************************************** #ifndef CGAL_AABB_TRIANGLE_PRIMITIVE_H_ #define CGAL_AABB_TRIANGLE_PRIMITIVE_H_ #include #include namespace CGAL { template , bool cache_primitive=false> class AABB_triangle_primitive : public internal::Primitive_caching { // types typedef internal::Primitive_caching Primitive_base; public: typedef typename GeomTraits::Point_3 Point; // point type typedef typename GeomTraits::Triangle_3 Datum; // datum type typedef Iterator Id; // Id type // member data private: Id m_it; public: // constructors AABB_triangle_primitive() {} AABB_triangle_primitive(Id it,TrianglePropertyMap t_pmap=TrianglePropertyMap()) : m_it(it) { this->set_primitive(it,t_pmap); } public: Id& id() { return m_it; } const Id& id() const { return m_it; } typename Primitive_base::result_type datum() const { return this->get_primitive(m_it); } /// Returns a point on the primitive Point reference_point() const { return datum().vertex(0); } }; } // end namespace CGAL #endif // CGAL_AABB_TRIANGLE_PRIMITIVE_H_