Rev 511 | Blame | Last modification | View Log | RSS feed
/* ----------------------------------------------------------------------- *
* This file is part of GEL, www.imm.dtu.dk/GEL
* Copyright (C) the authors (see AUTHORS.txt) and DTU Informatics
*
* Principal authors:
* Christian Thode Larsen (thode2d@gmail.com)
* J. Andreas Baerentzen (jab@imm.dtu.dk)
*
* See LICENSE.txt for licensing information
* ----------------------------------------------------------------------- */
#ifndef __ITEMS_H__
#define __ITEMS_H__
#include "ItemID.h"
namespace HMesh
{
struct Vertex
{
HalfEdgeID out;
};
struct Face
{
HalfEdgeID last;
};
struct HalfEdge
{
HalfEdgeID next;
HalfEdgeID prev;
HalfEdgeID opp;
VertexID vert;
FaceID face;
};
}
#endif
Generated by GNU Enscript 1.6.6.