Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
GraphVertex.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#ifndef JAU_GAMP_GRAPH_TESS_IMPL_GRAPHVERTEX_HPP_
12#define JAU_GAMP_GRAPH_TESS_IMPL_GRAPHVERTEX_HPP_
13
14#include <jau/cpp_lang_util.hpp>
15#include <jau/debug.hpp>
16#include <jau/int_types.hpp>
17#include <jau/string_util.hpp>
18
19#include <gamp/GampTypes.hpp>
22
24
25 using namespace jau::math;
26 using namespace jau::math::geom;
27 using namespace gamp::graph;
28 using namespace gamp::graph::tess;
29
30 /** \addtogroup Gamp_GraphImpl
31 *
32 * @{
33 */
34
35 class GraphVertex : public std::enable_shared_from_this<GraphVertex> {
36 private:
37 Vertex& m_vertex;
38 HEdgePtrList m_edges;
39 bool m_boundaryContained = false;
40
41 struct Private{ explicit Private() = default; };
42
43 public:
44 GraphVertex(Private, Vertex& point) noexcept
45 : m_vertex(point)
46 {}
47
48 static GraphVertexRef create(Vertex& point) noexcept {
49 return std::make_shared<GraphVertex>(Private(), point);
50 }
51
52 constexpr Vertex& vertex() const noexcept { return m_vertex; }
53 constexpr Vec3f& coord() const noexcept { return m_vertex.coord(); }
54
55 constexpr const HEdgePtrList& getEdges() const noexcept { return m_edges; }
56 constexpr HEdgePtrList& getEdges() noexcept { return m_edges; }
57
58 void addEdge(HEdgePtr edge) {
59 m_edges.push_back(edge);
60 }
61 void removeEdge(const HEdgePtr& edge) noexcept {
62 std::erase(m_edges, edge);
63 }
64 HEdgePtr findNextEdge(const GraphVertexRef& nextVert) const noexcept {
65 for(HEdgePtr e : m_edges) {
66 if(e->getNext()->getGraphPoint() == nextVert) {
67 return e;
68 }
69 }
70 return nullptr;
71 }
72 HEdgePtr findBoundEdge() const noexcept {
73 for(HEdgePtr e : m_edges) {
74 if((e->getType() == HEdge::BOUNDARY) || (e->getType() == HEdge::HOLE)) {
75 return e;
76 }
77 }
78 return nullptr;
79 }
80 HEdgePtr findPrevEdge(const GraphVertexRef& prevVert) const noexcept {
81 for(HEdgePtr e : m_edges) {
82 if(e->getPrev()->getGraphPoint() == prevVert) {
83 return e;
84 }
85 }
86 return nullptr;
87 }
88
89 constexpr bool isBoundaryContained() const noexcept { return m_boundaryContained; }
90
91 void setBoundaryContained(bool boundaryContained) noexcept {
92 m_boundaryContained = boundaryContained;
93 }
94
95 std::string toString() noexcept {
96 return std::string("GraphVertex[contained[")
97 .append(jau::to_string(m_boundaryContained)).append(", ")
98 .append(m_vertex.toString()).append("]");
99 }
100 };
101
102 inline bool HEdge::vertexOnCurveVertex() const noexcept {
103 return m_vert->vertex().onCurve();
104 }
105
106 /**@}*/
107
108} // namespace gamp::graph::tess::impl
109
110#endif /* JAU_GAMP_GRAPH_TESS_IMPL_GRAPHVERTEX_HPP_ */
HEdgePtr findBoundEdge() const noexcept
HEdgePtr findNextEdge(const GraphVertexRef &nextVert) const noexcept
GraphVertex(Private, Vertex &point) noexcept
constexpr bool isBoundaryContained() const noexcept
void setBoundaryContained(bool boundaryContained) noexcept
constexpr Vec3f & coord() const 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
Definition HEdge.hpp:48
static constexpr int HOLE
Definition HEdge.hpp:50
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
Definition HEdge.hpp:44
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
Vector3F< float > Vec3f
Definition vec3f.hpp:436