CDT  1.4.1
C++ library for constrained Delaunay triangulation
Loading...
Searching...
No Matches
CDT::DuplicatesInfo Struct Reference

Information about removed duplicated vertices. More...

#include <CDT.h>

Public Attributes

std::vector< std::size_t > mapping
 vertex index mapping
 
std::vector< std::size_t > duplicates
 duplicates' indices
 

Detailed Description

Information about removed duplicated vertices.

Contains mapping information and removed duplicates indices.

Note
vertices {0,1,2,3,4} where 0 and 3 are the same will produce mapping {0,1,2,0,3} (to new vertices {0,1,2,3}) and duplicates {3}

Definition at line 67 of file CDT.h.

Member Data Documentation

◆ duplicates

std::vector<std::size_t> CDT::DuplicatesInfo::duplicates

duplicates' indices

Definition at line 70 of file CDT.h.

◆ mapping

std::vector<std::size_t> CDT::DuplicatesInfo::mapping

vertex index mapping

Definition at line 69 of file CDT.h.


The documentation for this struct was generated from the following file: