70 lines
1.9 KiB
C++
70 lines
1.9 KiB
C++
// Copyright (c) 2002,2011 Utrecht University (The Netherlands).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Spatial_searching/include/CGAL/Plane_separator.h $
|
|
// $Id: Plane_separator.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) : Hans Tangelder (<hanst@cs.uu.nl>)
|
|
|
|
#ifndef CGAL_PLANE_SEPARATOR_H
|
|
#define CGAL_PLANE_SEPARATOR_H
|
|
|
|
#include <CGAL/license/Spatial_searching.h>
|
|
|
|
|
|
#include <iostream>
|
|
|
|
namespace CGAL {
|
|
template < class FT> class Plane_separator {
|
|
|
|
public:
|
|
|
|
int cutting_dim;
|
|
FT cutting_val;
|
|
|
|
inline int cutting_dimension() const { return cutting_dim;}
|
|
inline FT cutting_value() const { return cutting_val;}
|
|
|
|
void set_cutting_dimension(int d) {
|
|
cutting_dim=d;
|
|
}
|
|
|
|
void set_cutting_value(FT val) {
|
|
cutting_val=val;
|
|
}
|
|
//commented this is not used
|
|
// template <class Point>
|
|
// inline bool has_on_negative_side(const Point& i) {
|
|
// return i[cutting_dimension()] < cutting_value();
|
|
// }
|
|
|
|
Plane_separator(const int d, const FT& v) :
|
|
cutting_dim(d), cutting_val(v) {}
|
|
|
|
explicit Plane_separator() : cutting_dim(0), cutting_val(0) {}
|
|
|
|
// Added as workaround for VC2017 with /arch:AVX to fix
|
|
// https://cgal.geometryfactory.com/CGAL/testsuite/CGAL-4.14-I-95/Spatial_searching/TestReport_afabri_x64_Cygwin-Windows10_MSVC2017-Release-64bits.gz
|
|
Plane_separator& operator=(const Plane_separator& ps)
|
|
{
|
|
cutting_dim = ps.cutting_dim;
|
|
cutting_val = ps.cutting_val;
|
|
return *this;
|
|
}
|
|
|
|
};
|
|
|
|
|
|
template < class FT>
|
|
std::ostream& operator<< (std::ostream& s, Plane_separator<FT>& x) {
|
|
s << "\n Separator coordinate: " << x.cutting_dimension() <<
|
|
" value: " << x.cutting_value() << "\n";
|
|
return s;
|
|
}
|
|
} // namespace CGAL
|
|
#endif // CGAL_PLANE_SEPARATOR_H
|