Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
GraphOutline.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_GRAPHOUTLINE_HPP_
12#define JAU_GAMP_GRAPH_TESS_IMPL_GRAPHOUTLINE_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#include <memory>
23
25
26 using namespace jau::math;
27 using namespace jau::math::geom;
28 using namespace gamp::graph;
29 using namespace gamp::graph::tess;
30
31 /** @defgroup Gamp_GraphImpl Gamp Graph Implementation Detail
32 * Gamp Graph Implementation Detail
33 *
34 * @{
35 */
36
37 class GraphOutline;
38 typedef std::shared_ptr<GraphOutline> GraphOutlineRef;
40
42 private:
43
44 typedef std::unique_ptr<Outline, jau::OptDeleter<Outline>> OutlinePtr;
45 OutlinePtr m_outline;
46 GraphVertexRefList m_controlpoints;
47
48 public:
50 : m_outline(new Outline(), jau::OptDeleter<Outline>(true)),
51 m_controlpoints()
52 {
53 m_controlpoints.reserve(3);
54 }
55
56 /**
57 * Create a control polyline of control vertices
58 * the curve pieces can be identified by onCurve flag
59 * of each cp the control polyline is open by default
60 *
61 * @param ol the source {@link Outline}
62 */
64 : m_outline(const_cast<Outline*>(&ol), jau::OptDeleter<Outline>(false))
65 {
66 VertexList& vs = ol.vertices();
67 m_controlpoints.reserve(vs.size());
68 for(Vertex& v : vs) {
69 m_controlpoints.push_back(GraphVertex::create(v));
70 }
71 }
72
74 return std::make_shared<GraphOutline>();
75 }
77 return std::make_shared<GraphOutline>(ol);
78 }
79
80 const Outline& outline() const noexcept { return *m_outline; }
81
82 const GraphVertexRefList& graphPoints() const noexcept { return m_controlpoints; }
83
84 const VertexList& vertices() const noexcept { return m_outline->vertices(); }
85
86 void addVertex(const GraphVertexRef& v) {
87 m_controlpoints.push_back(v);
88 m_outline->addVertex(v->vertex());
89 }
90 };
91
92 /**@}*/
93
94} // namespace gamp::graph::tess::impl
95
96#endif /* JAU_GAMP_GRAPH_TESS_IMPL_GRAPHOUTLINE_HPP_ */
97
Define a single continuous stroke by control vertices.
Definition Outline.hpp:51
constexpr const VertexList & vertices() const noexcept
Definition Outline.hpp:91
const VertexList & vertices() const noexcept
GraphOutline(Outline &ol)
Create a control polyline of control vertices the curve pieces can be identified by onCurve flag of e...
const GraphVertexRefList & graphPoints() const noexcept
const Outline & outline() const noexcept
void addVertex(const GraphVertexRef &v)
static GraphOutlineRef create(Outline &ol)
Implementation of a dynamic linear array storage, aka vector, including relative positional access.
Definition darray.hpp:153
constexpr size_type size() const noexcept
Like std::vector::size().
Definition darray.hpp:1069
constexpr self_t & reserve(size_type new_capacity)
Like std::vector::reserve(), increases this instance's capacity to new_capacity.
Definition darray.hpp:1146
std::shared_ptr< GraphOutline > GraphOutlineRef
std::vector< GraphVertexRef > GraphVertexRefList
Definition HEdge.hpp:39
std::shared_ptr< GraphVertex > GraphVertexRef
Definition HEdge.hpp:38
jau::darray< GraphOutlineRef, uint32_t > GraphOutlineRefList
jau::darray< Vertex, uint32_t > VertexList
__pack(...): Produces MSVC, clang and gcc compatible lead-in and -out macros.
Definition backtrace.hpp:32