11#ifndef JAU_GAMP_GRAPH_TESS_IMPL_GRAPHOUTLINE_HPP_
12#define JAU_GAMP_GRAPH_TESS_IMPL_GRAPHOUTLINE_HPP_
44 typedef std::unique_ptr<Outline, jau::OptDeleter<Outline>> OutlinePtr;
53 m_controlpoints.reserve(3);
69 m_controlpoints.push_back(GraphVertex::create(v));
74 return std::make_shared<GraphOutline>();
77 return std::make_shared<GraphOutline>(ol);
87 m_controlpoints.push_back(v);
88 m_outline->addVertex(v->vertex());
Define a single continuous stroke by control vertices.
constexpr const VertexList & vertices() const noexcept
static GraphOutlineRef create()
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.
constexpr size_type size() const noexcept
Like std::vector::size().
constexpr self_t & reserve(size_type new_capacity)
Like std::vector::reserve(), increases this instance's capacity to new_capacity.
std::shared_ptr< GraphOutline > GraphOutlineRef
std::vector< GraphVertexRef > GraphVertexRefList
std::shared_ptr< GraphVertex > GraphVertexRef
jau::darray< GraphOutlineRef, uint32_t > GraphOutlineRefList
jau::darray< Vertex, uint32_t > VertexList
__pack(...): Produces MSVC, clang and gcc compatible lead-in and -out macros.