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

Method getBounds

pdal/QuadIndex.cpp:638–651  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

636}
637
638void QuadIndex::QImpl::getBounds(
639 double& xMin,
640 double& yMin,
641 double& xMax,
642 double& yMax) const
643{
644 if (m_tree)
645 {
646 xMin = m_tree->bbox.minimum.x;
647 yMin = m_tree->bbox.minimum.y;
648 xMax = m_tree->bbox.maximum.x;
649 yMax = m_tree->bbox.maximum.y;
650 }
651}
652
653std::size_t QuadIndex::QImpl::getDepth() const
654{

Callers 1

verifyLasMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected