Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View file

@ -0,0 +1,27 @@
#pragma once
#include "base/assert.hpp"
#include <cstdint>
namespace tesselator
{
// Edge of graph, built from triangles list.
struct Edge
{
int m_p[2]; // indexes of connected triangles (0 -> 1)
uint64_t m_delta; // delta of 1 - triangle from 0 - triangle
// intersected rib of 0 - triangle:
// - -1 - uninitialized or root edge
// - 0 - this edge intersects 1-2 rib;
// - 1 - this edge intersects 2-0 rib;
int8_t m_side;
Edge(int from, int to, uint64_t delta, char side) : m_delta(delta), m_side(side)
{
m_p[0] = from;
m_p[1] = to;
}
};
} // namespace tesselator