Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
HEdge.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com> (C++, Java) and Rami Santina (Java)
3 * Copyright Gothel Software e.K. and the authors
4 *
5 * SPDX-License-Identifier: MIT
6 *
7 * This Source Code Form is subject to the terms of the MIT License
8 * If a copy of the MIT was not distributed with this file,
9 * you can obtain one at https://opensource.org/license/mit/.
10 */
11
12#ifndef JAU_GAMP_GRAPH_TESS_IMPL_HEDGE_HPP_
13#define JAU_GAMP_GRAPH_TESS_IMPL_HEDGE_HPP_
14
15#include <vector>
16
17#include <jau/cpp_lang_util.hpp>
18#include <jau/debug.hpp>
19#include <jau/int_types.hpp>
20#include <jau/string_util.hpp>
21
22#include <gamp/GampTypes.hpp>
24
26
27 using namespace jau::math;
28 using namespace jau::math::geom;
29 using namespace gamp::graph;
30 using namespace gamp::graph::tess;
31
32 /** \addtogroup Gamp_GraphImpl
33 *
34 * @{
35 */
36
37 class GraphVertex;
38 typedef std::shared_ptr<GraphVertex> GraphVertexRef;
39 typedef std::vector<GraphVertexRef> GraphVertexRefList;
40
41 class HEdge;
42 typedef std::unique_ptr<HEdge> HEdgeRef; /// <Unique HEdge reference (pointer) w/ ownership, help at caller site
43 typedef HEdge* HEdgePtr; /// <Plain naked HEdge pointer w/o ownership for simplification and efficiency
44 typedef std::vector<HEdgePtr> HEdgePtrList;
45
46 class HEdge {
47 public:
48 constexpr static int BOUNDARY = 3;
49 constexpr static int INNER = 1;
50 constexpr static int HOLE = 2;
51
52 private:
53 GraphVertexRef m_vert;
54 HEdgePtr m_prev;
55 HEdgePtr m_next;
56 HEdgePtr m_sibling;
57 int m_type; // = BOUNDARY;
58
59 public:
61 : m_vert(std::move(vert)), m_prev(nullptr), m_next(nullptr), m_sibling(nullptr),
62 m_type(type)
63 {}
64
65 HEdge(GraphVertexRef vert, HEdgePtr prev, HEdgePtr next, HEdgePtr sibling, int type)
66 : m_vert(std::move(vert)),
67 m_prev(prev), m_next(next), m_sibling(sibling),
68 m_type(type)
69 { }
70
71 public:
72 static HEdgeRef create(const GraphVertexRef& vert, int type) {
73 return std::make_unique<HEdge>(vert, type);
74 }
75 static HEdgeRef create(const GraphVertexRef& vert, HEdgePtr prev, HEdgePtr next, HEdgePtr sibling, int type) {
76 return std::make_unique<HEdge>(vert, prev, next, sibling, type);
77 }
78 constexpr const GraphVertexRef& getGraphPoint() const noexcept { return m_vert; }
79 void setVert(const GraphVertexRef& vert) noexcept { m_vert = vert; }
80
81 constexpr HEdgePtr getPrev() noexcept { return m_prev; }
82 void setPrev(HEdgePtr prev) noexcept { m_prev = prev; }
83
84 constexpr HEdgePtr getNext() noexcept { return m_next; }
85 void setNext(HEdgePtr next) noexcept { m_next = next; }
86
87 constexpr HEdgePtr getSibling() noexcept { return m_sibling; }
88 void setSibling(HEdgePtr sibling) noexcept { m_sibling = sibling; }
89
90 constexpr int getType() const noexcept { return m_type; }
91
92 void setType(int type) noexcept { m_type = type; }
93
94 static void connect(HEdgePtr first, HEdgePtr next) noexcept {
95 first->setNext(next);
96 next->setPrev(first);
97 }
98
99 static void makeSiblings(HEdgePtr first, HEdgePtr second) noexcept {
100 first->setSibling(second);
101 second->setSibling(first);
102 }
103
104 std::string toString() {
105 return "HEdge{this "+jau::to_hexstring(this)+", prev "+jau::to_hexstring(m_prev)+", next "+jau::to_hexstring(m_next)+"}";
106 }
107 void printChain() {
108 int i=0;
109 HEdgePtr current = this;
110 HEdgePtr next = getNext();
111 jau::PLAIN_PRINT(true, "HEdge[%d: root %p]", i, this);
112 do {
113 jau::PLAIN_PRINT(true, "HEdge[%d: current %p, next %p]", i, current, next); ++i;
114 if( !next ) {
115 break;
116 }
117 current = next;
118 next = current->getNext();
119
120 } while(current != this);
121 }
122
123 bool vertexOnCurveVertex() const noexcept ;
124 };
125
126 /**@}*/
127
128} // namespace gamp::graph::tess::impl
129
130#endif /* JAU_GAMP_GRAPH_TESS_IMPL_HEDGE_HPP_ */
131
constexpr int getType() const noexcept
Definition HEdge.hpp:90
void setVert(const GraphVertexRef &vert) noexcept
Definition HEdge.hpp:79
constexpr HEdgePtr getPrev() noexcept
Definition HEdge.hpp:81
constexpr HEdgePtr getSibling() noexcept
Definition HEdge.hpp:87
void setNext(HEdgePtr next) noexcept
Definition HEdge.hpp:85
static constexpr int BOUNDARY
Definition HEdge.hpp:48
static void connect(HEdgePtr first, HEdgePtr next) noexcept
Definition HEdge.hpp:94
void setSibling(HEdgePtr sibling) noexcept
Definition HEdge.hpp:88
HEdge(GraphVertexRef vert, int type)
Definition HEdge.hpp:60
void setPrev(HEdgePtr prev) noexcept
Definition HEdge.hpp:82
constexpr HEdgePtr getNext() noexcept
Definition HEdge.hpp:84
static void makeSiblings(HEdgePtr first, HEdgePtr second) noexcept
Definition HEdge.hpp:99
static HEdgeRef create(const GraphVertexRef &vert, int type)
Definition HEdge.hpp:72
static HEdgeRef create(const GraphVertexRef &vert, HEdgePtr prev, HEdgePtr next, HEdgePtr sibling, int type)
Definition HEdge.hpp:75
void setType(int type) noexcept
Definition HEdge.hpp:92
HEdge(GraphVertexRef vert, HEdgePtr prev, HEdgePtr next, HEdgePtr sibling, int type)
Definition HEdge.hpp:65
constexpr const GraphVertexRef & getGraphPoint() const noexcept
Definition HEdge.hpp:78
static constexpr int HOLE
Definition HEdge.hpp:50
static constexpr int INNER
Definition HEdge.hpp:49
std::vector< HEdgePtr > HEdgePtrList
<Plain naked HEdge pointer w/o ownership for simplification and efficiency
Definition HEdge.hpp:44
std::vector< GraphVertexRef > GraphVertexRefList
Definition HEdge.hpp:39
std::shared_ptr< GraphVertex > GraphVertexRef
Definition HEdge.hpp:38
HEdge * HEdgePtr
<Unique HEdge reference (pointer) w/ ownership, help at caller site
Definition HEdge.hpp:43
bool vertexOnCurveVertex() const noexcept
std::unique_ptr< HEdge > HEdgeRef
Definition HEdge.hpp:42
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.
Definition debug.cpp:258
STL namespace.