Merge branch 'lh_mm_segmentation_inconsistency'

This commit is contained in:
Lukas Matena 2025-02-14 11:57:21 +01:00
commit 147121ca6a
2 changed files with 705 additions and 303 deletions

View File

@ -40,6 +40,8 @@ template<typename PT> struct PointCellRange
PointCellRange() = delete;
explicit PointCellRange(const PT &source_point) : source_point(source_point) {}
PointCellRange(const PT &source_point, const VD::edge_type *edge_begin, const VD::edge_type *edge_end)
: source_point(source_point), edge_begin(edge_begin), edge_end(edge_end) {}
bool is_valid() const { return edge_begin && edge_end && edge_begin != edge_end; }
};

File diff suppressed because it is too large Load Diff