22 if (fabs(_p[0] - other._p[0]) > 0.0001) {
23 return _p[0] < other._p[0];
24 }
else if (fabs(_p[1] - other._p[1]) > 0.0001) {
25 return _p[1] < other._p[1];
26 }
else if (fabs(_p[2] - other._p[2]) > 0.0001) {
27 return _p[2] < other._p[2];
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
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...