12#ifndef JAU_GAMP_GRAPH_TESS_IMPL_HEDGE_HPP_
13#define JAU_GAMP_GRAPH_TESS_IMPL_HEDGE_HPP_
27 using namespace jau::math;
28 using namespace jau::math::geom;
29 using namespace gamp::graph;
30 using namespace gamp::graph::tess;
50 constexpr static int HOLE = 2;
61 : m_vert(
std::move(vert)), m_prev(nullptr), m_next(nullptr), m_sibling(nullptr),
66 : m_vert(
std::move(vert)),
67 m_prev(prev), m_next(next), m_sibling(sibling),
73 return std::make_unique<HEdge>(vert,
type);
76 return std::make_unique<HEdge>(vert, prev, next, sibling,
type);
90 constexpr int getType() const noexcept {
return m_type; }
100 first->setSibling(second);
101 second->setSibling(first);
113 jau::PLAIN_PRINT(
true,
"HEdge[%d: current %p, next %p]", i, current, next); ++i;
120 }
while(current !=
this);
constexpr int getType() const noexcept
void setVert(const GraphVertexRef &vert) noexcept
constexpr HEdgePtr getPrev() noexcept
constexpr HEdgePtr getSibling() noexcept
void setNext(HEdgePtr next) noexcept
static constexpr int BOUNDARY
static void connect(HEdgePtr first, HEdgePtr next) noexcept
void setSibling(HEdgePtr sibling) noexcept
HEdge(GraphVertexRef vert, int type)
void setPrev(HEdgePtr prev) noexcept
constexpr HEdgePtr getNext() noexcept
static void makeSiblings(HEdgePtr first, HEdgePtr second) noexcept
static HEdgeRef create(const GraphVertexRef &vert, int type)
static HEdgeRef create(const GraphVertexRef &vert, HEdgePtr prev, HEdgePtr next, HEdgePtr sibling, int type)
void setType(int type) noexcept
HEdge(GraphVertexRef vert, HEdgePtr prev, HEdgePtr next, HEdgePtr sibling, int type)
constexpr const GraphVertexRef & getGraphPoint() const noexcept
static constexpr int HOLE
static constexpr int INNER
std::vector< HEdgePtr > HEdgePtrList
<Plain naked HEdge pointer w/o ownership for simplification and efficiency
std::vector< GraphVertexRef > GraphVertexRefList
std::shared_ptr< GraphVertex > GraphVertexRef
HEdge * HEdgePtr
<Unique HEdge reference (pointer) w/ ownership, help at caller site
bool vertexOnCurveVertex() const noexcept
std::unique_ptr< HEdge > HEdgeRef
std::string to_hexstring(value_type const &v, const bool skipLeading0x=false) noexcept
Produce a lower-case hexadecimal string representation with leading 0x in MSB of the given pointer.
void PLAIN_PRINT(const bool printPrefix, const char *format,...) noexcept
Use for unconditional plain messages, prefix '[elapsed_time] ' if printPrefix == true.