// Copyright (c) 2012 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.1/AABB_tree/include/CGAL/AABB_triangle_primitive.h $ // $Id: AABB_triangle_primitive.h 5ec5ad6 2020-04-22T16:23:57+02:00 Sébastien Loriot // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // // Author(s) : Sebastien Loriot // #ifndef CGAL_AABB_TRIANGLE_PRIMITIVE_H_ #define CGAL_AABB_TRIANGLE_PRIMITIVE_H_ #include #include #include #include #include namespace CGAL { namespace internal { template struct Point_from_triangle_3_iterator_property_map{ //classical typedefs typedef Iterator key_type; typedef typename GeomTraits::Point_3 value_type; typedef typename cpp11::result_of< typename GeomTraits::Construct_vertex_3(typename GeomTraits::Triangle_3,int) >::type reference; typedef boost::readable_property_map_tag category; inline friend typename Point_from_triangle_3_iterator_property_map::reference get(Point_from_triangle_3_iterator_property_map, Iterator it) { return typename GeomTraits::Construct_vertex_3()( *it, 0 ); } }; }//namespace internal /*! * \ingroup PkgAABBTreeRef * Primitive type that uses as identifier an iterator with a 3D triangle as `value_type`. * The iterator from which the primitive is built should not be invalided * while the AABB tree holding the primitive is in use. * * \cgalModels `AABBPrimitive` * * \tparam GeomTraits is a traits class providing the nested type `Point_3` and `Triangle_3`. * It also provides the functor `Construct_vertex_3` that has an operator taking a `Triangle_3` * and an integer as parameters and returning a triangle point as a type convertible to `Point_3`. * In addition `Construct_vertex_3` must support the result_of protocol. * \tparam Iterator is a model of `ForwardIterator` with its value type convertible to `GeomTraits::Triangle_3` * \tparam CacheDatum is either `CGAL::Tag_true` or `CGAL::Tag_false`. In the former case, * the datum is stored in the primitive, while in the latter it is * constructed on the fly to reduce the memory footprint. * The default is `CGAL::Tag_false` (datum is not stored). * * \sa `AABBPrimitive` * \sa `AABB_primitive` * \sa `AABB_segment_primitive` * \sa `AABB_halfedge_graph_segment_primitive` * \sa `AABB_face_graph_triangle_primitive` */ template < class GeomTraits, class Iterator, class CacheDatum=Tag_false> class AABB_triangle_primitive #ifndef DOXYGEN_RUNNING : public AABB_primitive< Iterator, Input_iterator_property_map, internal::Point_from_triangle_3_iterator_property_map, Tag_false, CacheDatum > #endif { typedef AABB_primitive< Iterator, Input_iterator_property_map, internal::Point_from_triangle_3_iterator_property_map, Tag_false, CacheDatum > Base; public: ///constructor from an iterator AABB_triangle_primitive(Iterator it) : Base(it){} }; } // end namespace CGAL #include #endif // CGAL_AABB_TRIANGLE_PRIMITIVE_H_