dust3d/thirdparty/cgal/CGAL-5.1/include/CGAL/Mesh_3/utilities.h

122 lines
3.1 KiB
C
Raw Normal View History

// Copyright (c) 2009 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
2020-10-13 12:44:25 +00:00
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Mesh_3/include/CGAL/Mesh_3/utilities.h $
// $Id: utilities.h 4dda7b6 2020-05-27T15:53:05+02:00 Sébastien Loriot
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Stephane Tayeb
//
//******************************************************************************
2020-10-13 12:44:25 +00:00
// File Description :
//******************************************************************************
#ifndef CGAL_MESH_3_UTILITIES_H
#define CGAL_MESH_3_UTILITIES_H
2020-10-13 12:44:25 +00:00
#include <CGAL/license/Triangulation_3.h>
#include <CGAL/Has_timestamp.h>
#include <iterator>
#include <string>
#include <sstream>
namespace CGAL {
namespace Mesh_3 {
namespace internal {
2020-10-13 12:44:25 +00:00
struct Debug_messages_tools {
template <typename Vertex_handle>
static std::string disp_vert(Vertex_handle v, Tag_true) {
std::stringstream ss;
ss.precision(17);
ss << (void*)(&*v) << "[ts=" << v->time_stamp() << "]"
<< "(" << v->point() <<")";
return ss.str();
}
template <typename Vertex_handle>
static std::string disp_vert(Vertex_handle v, Tag_false) {
std::stringstream ss;
ss.precision(17);
ss << (void*)(&*v) << "(" << v->point() <<")";
return ss.str();
}
template <typename Vertex_handle>
static std::string disp_vert(Vertex_handle v)
{
typedef typename std::iterator_traits<Vertex_handle>::value_type Vertex;
return disp_vert(v, CGAL::internal::Has_timestamp<Vertex>());
}
};
/**
* @class First_of
* Function object which returns the first element of a pair
*/
template <typename Pair>
struct First_of :
public CGAL::cpp98::unary_function<Pair, const typename Pair::first_type&>
{
typedef CGAL::cpp98::unary_function<Pair, const typename Pair::first_type&> Base;
typedef typename Base::result_type result_type;
typedef typename Base::argument_type argument_type;
2020-10-13 12:44:25 +00:00
result_type operator()(const argument_type& p) const { return p.first; }
}; // end class First_of
2020-10-13 12:44:25 +00:00
/**
* @class Ordered_pair
* Stores two elements in an ordered manner, i.e. first() < second()
*/
template <typename T>
class Ordered_pair
{
public:
Ordered_pair(const T& t1, const T& t2)
: data_(t1,t2)
{
2020-10-13 12:44:25 +00:00
if ( ! (t1 < t2) )
{
data_.second = t1;
data_.first = t2;
}
}
2020-10-13 12:44:25 +00:00
const T& first() const { return data_.first; }
const T& second() const { return data_.second; }
2020-10-13 12:44:25 +00:00
bool operator<(const Ordered_pair& rhs) const { return data_ < rhs.data_; }
2020-10-13 12:44:25 +00:00
private:
std::pair<T,T> data_;
};
/**
* @class Iterator_not_in_complex
* @brief A class to filter elements which do not belong to the complex
*/
template < typename C3T3 >
class Iterator_not_in_complex
{
const C3T3& c3t3_;
public:
Iterator_not_in_complex(const C3T3& c3t3) : c3t3_(c3t3) { }
2020-10-13 12:44:25 +00:00
template <typename Iterator>
bool operator()(Iterator it) const { return ! c3t3_.is_in_complex(*it); }
}; // end class Iterator_not_in_complex
2020-10-13 12:44:25 +00:00
} // end namespace internal
} // end namespace Mesh_3
} //namespace CGAL
#endif // CGAL_MESH_3_UTILITIES_H