11#ifndef JAU_GAMP_GRAPH_TESS_IMPL_GRAPHVERTEX_HPP_
12#define JAU_GAMP_GRAPH_TESS_IMPL_GRAPHVERTEX_HPP_
25 using namespace jau::math;
26 using namespace jau::math::geom;
27 using namespace gamp::graph;
28 using namespace gamp::graph::tess;
35 class GraphVertex :
public std::enable_shared_from_this<GraphVertex> {
39 bool m_boundaryContained =
false;
41 struct Private{
explicit Private() =
default; };
49 return std::make_shared<GraphVertex>(Private(), point);
53 constexpr Vec3f&
coord() const noexcept {
return m_vertex.coord(); }
59 m_edges.push_back(edge);
62 std::erase(m_edges, edge);
66 if(e->getNext()->getGraphPoint() == nextVert) {
82 if(e->getPrev()->getGraphPoint() == prevVert) {
92 m_boundaryContained = boundaryContained;
96 return std::string(
"GraphVertex[contained[")
98 .append(m_vertex.toString()).append(
"]");
103 return m_vert->vertex().onCurve();
HEdgePtr findBoundEdge() const noexcept
HEdgePtr findNextEdge(const GraphVertexRef &nextVert) const noexcept
GraphVertex(Private, Vertex &point) noexcept
constexpr bool isBoundaryContained() const noexcept
void addEdge(HEdgePtr edge)
void setBoundaryContained(bool boundaryContained) noexcept
constexpr Vec3f & coord() const noexcept
std::string toString() noexcept
static GraphVertexRef create(Vertex &point) noexcept
constexpr HEdgePtrList & getEdges() noexcept
constexpr const HEdgePtrList & getEdges() const noexcept
constexpr Vertex & vertex() const noexcept
void removeEdge(const HEdgePtr &edge) noexcept
HEdgePtr findPrevEdge(const GraphVertexRef &prevVert) const noexcept
static constexpr int BOUNDARY
static constexpr int HOLE
std::string to_string(const endian_t v) noexcept
Return std::string representation of the given endian.
std::vector< HEdgePtr > HEdgePtrList
<Plain naked HEdge pointer w/o ownership for simplification and efficiency
std::shared_ptr< GraphVertex > GraphVertexRef
HEdge * HEdgePtr
<Unique HEdge reference (pointer) w/ ownership, help at caller site
bool vertexOnCurveVertex() const noexcept