MCPcopy Create free account
hub / github.com/PDAL/PDAL / equal

Function equal

pdal/util/Bounds.hpp:136–140  ·  view source on GitHub ↗

Determine if the bounds of this box are the same as that of another box. Empty bounds boxes are always equal. \param other Bounds box to check for equality. \return \c true if the provided box has equal limits to this box, \c false otherwise. */

Source from the content-addressed store, hash-verified

134 \c false otherwise.
135 */
136 bool equal(const BOX2D& other) const
137 {
138 return minx == other.minx && maxx == other.maxx &&
139 miny == other.miny && maxy == other.maxy;
140 }
141
142 /**
143 Determine if the bounds of this box are the same as that of another

Callers 6

TESTFunction · 0.85
TESTFunction · 0.85
DelaunatorMethod · 0.85
topMethod · 0.85
operator==Function · 0.85
operator!=Function · 0.85

Calls

no outgoing calls

Tested by 2

TESTFunction · 0.68
TESTFunction · 0.68