mirror of https://github.com/CGAL/cgal
64 lines
1.8 KiB
C++
64 lines
1.8 KiB
C++
// Copyright (c) 2009 INRIA Sophia-Antipolis (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org); you may redistribute it under
|
|
// the terms of the Q Public License version 1.0.
|
|
// See the file LICENSE.QPL distributed with CGAL.
|
|
//
|
|
// 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
|
|
//
|
|
//******************************************************************************
|
|
// File Description :
|
|
//
|
|
//******************************************************************************
|
|
|
|
#ifndef AABB_SEGMENT_PRIMITIVE_H_
|
|
#define AABB_SEGMENT_PRIMITIVE_H_
|
|
|
|
namespace CGAL {
|
|
|
|
template <class GeomTraits, class Iterator>
|
|
class AABB_segment_primitive
|
|
{
|
|
// type
|
|
public:
|
|
typedef typename GeomTraits::Point_3 Point; // point type
|
|
typedef typename GeomTraits::Segment_3 Datum; // datum type
|
|
typedef Iterator Id; // Id type
|
|
|
|
// member data
|
|
private:
|
|
Id m_it; // iterator
|
|
Datum m_datum; // 3D segment
|
|
|
|
public:
|
|
// constructor
|
|
AABB_segment_primitive(Id it)
|
|
: m_it(it)
|
|
{
|
|
m_datum = *it; // copy segment
|
|
}
|
|
public:
|
|
Id id() { return m_it; }
|
|
Datum& datum() { return m_datum; }
|
|
const Datum& datum() const { return m_datum; }
|
|
|
|
/// Returns a point on the primitive
|
|
Point reference_point() const { return m_datum.source(); }
|
|
};
|
|
|
|
} // end namespace CGAL
|
|
|
|
#endif // AABB_SEGMENT_PRIMITIVE_H_
|
|
|