15 #include "dxfVertex.h" 26 if (fabs(_p[0] - other._p[0]) > 0.0001) {
27 return _p[0] < other._p[0];
28 }
else if (fabs(_p[1] - other._p[1]) > 0.0001) {
29 return _p[1] < other._p[1];
30 }
else if (fabs(_p[2] - other._p[2]) > 0.0001) {
31 return _p[2] < other._p[2];
Stored within DXFFile, this is the basic Vertex data of a DXF file.
int operator<(const DXFVertex &other) const
This defines a unique ordering for vertices so that the DXFVertexMap can group identical vertices tog...