cgal/Mesh_2/include/CGAL/Mesh_2/Face_badness.h

27 lines
506 B
C++

// Copyright (c) 2004 INRIA Sophia-Antipolis (France).
// 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
//
//
// Author(s) : Laurent RINEAU
#ifndef CGAL_MESH_2_FACE_BADNESS_H
#define CGAL_MESH_2_FACE_BADNESS_H
#include <CGAL/license/Mesh_2.h>
namespace CGAL
{
namespace Mesh_2
{
enum Face_badness { NOT_BAD, BAD, IMPERATIVELY_BAD };
}
}
#endif // CGAL_MESH_2_FACE_BADNESS_H