mirror of https://github.com/CGAL/cgal
43 lines
847 B
C++
43 lines
847 B
C++
// Copyright (c) 2013-2015 The University of Western Sydney, Australia.
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
//
|
|
// Authors: Frédérik Paradis
|
|
|
|
/*! \file Cone_spanners_enum_2.h
|
|
*
|
|
* This header defines enumerators for the cone spanners functors.
|
|
*/
|
|
|
|
#ifndef CONE_SPANNERS_ENUM_2_H
|
|
#define CONE_SPANNERS_ENUM_2_H
|
|
|
|
#include <CGAL/license/Cone_spanners_2.h>
|
|
|
|
|
|
namespace CGAL {
|
|
/*! \ingroup PkgConeSpanners2Ref
|
|
|
|
\brief An enum of the choice of cones in cone spanners.
|
|
*/
|
|
enum Cones_selected {
|
|
/*! \brief selects even cones.
|
|
*/
|
|
EVEN_CONES = 0,
|
|
/*! \brief selects odd cones.
|
|
*/
|
|
ODD_CONES = 1,
|
|
/*! \brief selects all cones.
|
|
*/
|
|
ALL_CONES = 2 };
|
|
|
|
} // namespace CGAL
|
|
|
|
#endif
|