Ejemplo n.º 1
0
QMap<int, QSet<int> > RSpatialIndex::queryIntersected(const RBox& b,
    RSpatialIndexVisitor* dataVisitor) {

    return queryIntersected(
        b.c1.x, b.c1.y, b.c1.z,
        b.c2.x, b.c2.y, b.c2.z,
        dataVisitor
    );
}
Ejemplo n.º 2
0
QMap<int, QSet<int> > RSpatialIndexNavel::queryIntersected(
    double x1, double y1, double z1,
    double x2, double y2, double z2,
    RSpatialIndexVisitor* dataVisitor) {

    return queryIntersected(
        RSpatialIndexNavel::RSiRegion(x1,y1,z1, x2,y2,z2), 
        dataVisitor
    );
}