dust3d/thirdparty/cgal/CGAL-5.1/include/CGAL/Mesh_facet_topology.h

37 lines
1.0 KiB
C++

// Copyright (c) 2010 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Mesh_3/include/CGAL/Mesh_facet_topology.h $
// $Id: Mesh_facet_topology.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) : Stephane Tayeb
//
//******************************************************************************
// File Description :
//******************************************************************************
#ifndef CGAL_MESH_FACET_TOPOLOGY_H
#define CGAL_MESH_FACET_TOPOLOGY_H
#include <CGAL/license/Mesh_3.h>
namespace CGAL {
enum Mesh_facet_topology {
FACET_VERTICES_ON_SURFACE = 1,
FACET_VERTICES_ON_SAME_SURFACE_PATCH = 2,
FACET_VERTICES_ON_SAME_SURFACE_PATCH_WITH_ADJACENCY_CHECK = 3,
MANIFOLD_WITH_BOUNDARY = 8,
NO_BOUNDARY = 16,
MANIFOLD = 24
};
} // end namespace CGAL
#endif // CGAL_MESH_FACET_TOPOLOGY_H