Files
openmesh/Doc/Concepts/MeshItems.hh

189 lines
6.2 KiB
C++
Raw Normal View History

//=============================================================================
//
// OpenMesh
// Copyright (C) 2001-2005 by Computer Graphics Group, RWTH Aachen
// www.openmesh.org
//
//-----------------------------------------------------------------------------
//
// License
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Library General Public License as published
// by the Free Software Foundation, version 2.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
//-----------------------------------------------------------------------------
//
// $Revision: 1.2 $
// $Date: 2005-12-21 14:05:27 $
//
//=============================================================================
//=============================================================================
//
// Mesh Items Concept
//
//=============================================================================
#error this file is for documentation purposes only
//== NAMESPACES ===============================================================
namespace OpenMesh {
namespace Concepts {
//== CLASS DEFINITION =========================================================
/** \ingroup mesh_concepts_group
The mesh items class encapsulates the types VertexT, HalfedgeT,
EdgeT, and FaceT.
\see VertexT, HalfedgeT, EdgeT, FaceT
*/
struct MeshItems {
/** Interface for the internal vertex type. This minimal interface
must be provided by every vertex. It's up to the mesh kernel (or
the items used by the mesh kernel) to implement it.
All methods marked as internal should only be used by the mesh
kernel.
*/
template <class Refs_> class VertexT
{
public:
/// Re-export the template argument Refs. This \b must be done!
typedef Refs_ Refs;
/// Default constructor
VertexT();
/// Get an outgoing halfedge
HalfedgeHandle halfedge_handle() const;
/// Set the outgoing halfedge link
void set_halfedge_handle(HalfedgeHandle _eh);
};
/** Interface for the internal halfedge type. This minimal interface
must be provided by every halfedge. It's up to the mesh kernel (or
the items used by the mesh kernel) to implement it.
All methods marked as internal should only be used by the mesh
kernel.
*/
template <class Refs_> class HalfedgeT
{
public:
/// Re-export the template argument Refs. This \b must be done!
typedef Refs_ Refs;
/** Get the vertex the halfedge point to.
\internal */
VertexHandle vertex_handle() const;
/** Set the vertex the halfedge point to.
\internal */
void set_vertex_handle(VertexHandle _vh);
/** Get the face this halfedge belongs to.
\internal */
FaceHandle face_handle() const;
/** Set the face this halfedge belongs to.
\internal */
void set_face_handle(FaceHandle _fh);
/** Get the next halfedge inside this face.
\internal */
HalfedgeHandle next_halfedge_handle() const;
/** Set the next halfedge inside this face.
\internal */
void set_next_halfedge_handle(HalfedgeHandle _eh);
};
/** Interface for the internal edge type. This minimal interface must
be provided by every edge. It's up to the mesh kernel (or the
items used by the mesh kernel) to implement it.
All methods marked as internal should only be used by the mesh
kernel.
*/
template <class Refs_> class EdgeT
{
public:
/// Re-export the template argument Refs. This \b must be done!
typedef Refs_ Refs;
/** Store two halfedges.
\internal */
Halfedge halfedges[2];
};
/** Interface for the internal face type. This minimal interface must
be provided by every face. It's up to the mesh kernel (or the
items used by the mesh kernel) to implement it.
All methods marked as internal should only be used by the mesh
kernel.
*/
template <class Refs_> class FaceT
{
public:
/// Re-export the template argument Refs. This \b must be done!
typedef Refs_ Refs;
/** Compile-time-tag: is this face a triangle? Should be typedef'ed
to either GenProg::TagTrue or GenProg::TagFalse */
typedef GenProg::TagTrue IsTriangle;
/// Run-time test: is this face a triangle?
static bool is_triangle();
/// Get the number of vertices of this face.
unsigned char n_vertices() const;
/** Set the number of vertices of this face.
\internal */
void set_n_vertices(unsigned char _n);
/// Get a halfedge that belongs to this face.
HalfedgeHandle halfedge_handle() const;
/** Set a halfedge that belongs this face.
\internal */
void set_halfedge_handle(HalfedgeHandle _eh);
};
};
//=============================================================================
} // namespace Concepts
} // namespace OpenMesh
//=============================================================================