Program Listing for File HalfEdgeVertex.hpp
↰ Return to documentation for file (include/lvr2/geometry/HalfEdgeVertex.hpp)
/*
* HalfEdgeVertex.hpp
*
* @date 02.06.2017
* @author Lukas Kalbertodt <lukas.kalbertodt@gmail.com>
*/
#ifndef LVR2_GEOMETRY_HALFEDGEVERTEX_H_
#define LVR2_GEOMETRY_HALFEDGEVERTEX_H_
#include "BaseMesh.hpp"
namespace lvr2
{
// Forward declarations
struct OptionalHalfEdgeHandle;
template <typename BaseVecT>
struct HalfEdgeVertex
{
OptionalHalfEdgeHandle outgoing;
BaseVecT pos;
};
} // namespace lvr2
#endif /* LVR2_GEOMETRY_HALFEDGEVERTEX_H_ */