11#ifndef JAU_GAMP_GRAPH_TESS_CDTesselator2D_HPP_
12#define JAU_GAMP_GRAPH_TESS_CDTesselator2D_HPP_
50 size_t m_addedVerticeCount;
57 : complexShape(false) {
reset(); }
61 constexpr void reset() noexcept {
63 m_addedVerticeCount = 0;
87 if( innerPoly->graphPoints().size() >= 3 ) {
90 loops.push_back(loop);
125 loop->addConstraintCurveHole(innerPoly);
130 size_t loopsSize = loops.size();
132 for(
size_t i=0;i<loopsSize;i++) {
135 size = loop->computeLoopSize();
136 while(!loop->isSimplex()){
139 if(numTries > size) {
140 tri = loop->cut(
false);
143 tri = loop->cut(
true);
149 tri->id() = m_maxTriID++;
157 if(numTries > size*2){
167 tri->id() = m_maxTriID++;
180 size_t size = outVertices.size();
181 for(
size_t i=0; i < size; i++) {
186 if( !gv1->vertex().onCurve() ) {
187 Vertex v0 = gv0->vertex().clone();
189 Vertex v1 = gv1->vertex().clone();
190 m_addedVerticeCount += 3;
192 boundaryVertices.
put(0,
true);
193 boundaryVertices.
put(1,
true);
194 boundaryVertices.
put(2,
true);
196 gv0->setBoundaryContained(
true);
197 gv1->setBoundaryContained(
true);
198 gv2->setBoundaryContained(
true);
201 if( hole || holeLike ) {
205 innerOutline->addVertex(gv1);
217 t->id() = m_maxTriID++;
223 if( !gv2->vertex().onCurve() || !gv0->vertex().onCurve() ) {
224 gv1->setBoundaryContained(
true);
226 innerOutline->addVertex(gv1);
235 impl::LoopRef getContainerLoop(
const Outline& polyline)
noexcept {
236 size_t count = loops.size();
238 const VertexList& vertices = polyline.vertices();
239 for(
size_t i=0; i < count; ++i) {
241 for(
size_t j=0;
j < vertices.
size(); ++
j) {
242 if( loop->checkInside( vertices[j] ) ) {
Define a single continuous stroke by control vertices.
void setWinding(Winding enforce)
Sets Winding to this outline.
Winding getWinding() const noexcept
Returns the cached or computed winding of this Outlines polyline using VectorUtil#area(ArrayList).
jau::bitfield< 3 > tribit_t
static TriangleRef create(const Vertex &v1, const Vertex &v2, const Vertex &v3, const tribit_t &boundaryVertices) noexcept
constexpr Vertex clone() const noexcept
constexpr const Vec3f & texCoord() const noexcept
constexpr const Vec3f & coord() const noexcept
constexpr CDTriangulator2D() noexcept
Constructor for a new Delaunay triangulator.
void generate(TriangleRefList &sink)
constexpr void setComplexShape(bool complex) noexcept
constexpr size_t getAddedVerticeCount() const noexcept
void addCurve(TriangleRefList &sink, Outline &polyline, float sharpness)
static constexpr bool FixedWindingRule
constexpr void reset() noexcept
static GraphOutlineRef create()
static constexpr bool FixedWindingRule
static LoopRef createBoundary(const GraphOutlineRef &polyline, bool isConvex)
constexpr void put(size_t bitnum, bool v) noexcept
constexpr size_type size() const noexcept
Like std::vector::size().
constexpr void push_back(const value_type &x)
Like std::vector::push_back(), copy.
#define WARN_PRINT(...)
Use for unconditional warning messages, prefix '[elapsed_time] Warning @ FILE:LINE FUNC: '.
std::shared_ptr< Loop > LoopRef
std::shared_ptr< GraphOutline > GraphOutlineRef
std::vector< GraphVertexRef > GraphVertexRefList
std::shared_ptr< GraphVertex > GraphVertexRef
std::vector< LoopRef > LoopRefList
jau::darray< Vertex, uint32_t > VertexList
std::shared_ptr< Triangle > TriangleRef
jau::darray< TriangleRef, uint32_t > TriangleRefList
constexpr bool is2DCCW(const Vec3f &a, const Vec3f &b, const Vec3f &c) noexcept
Check if points are in ccw order.
std::string to_string(const math_error_t v) noexcept
Returns std::string representation of math_error_t.
void PLAIN_PRINT(const bool printPrefix, const char *format,...) noexcept
Use for unconditional plain messages, prefix '[elapsed_time] ' if printPrefix == true.
void print_backtrace(const bool skip_anon_frames, const jau::snsize_t max_frames=-1, const jau::snsize_t skip_frames=2) noexcept
Prints the de-mangled backtrace string separated by newline excluding this function to stderr,...