Home
last modified time | relevance | path

Searched refs:bottomLeft (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeorectangle.h52 Q_PROPERTY(QGeoCoordinate bottomLeft READ bottomLeft WRITE setBottomLeft)
84 void setBottomLeft(const QGeoCoordinate &bottomLeft);
85 QGeoCoordinate bottomLeft() const;
H A Dqgeorectangle.cpp378 void QGeoRectangle::setBottomLeft(const QGeoCoordinate &bottomLeft) in setBottomLeft() argument
382 d->bottomRight.setLatitude(bottomLeft.latitude()); in setBottomLeft()
383 d->topLeft.setLongitude(bottomLeft.longitude()); in setBottomLeft()
389 QGeoCoordinate QGeoRectangle::bottomLeft() const in bottomLeft() function in QGeoRectangle
672 && d->contains(rectangle.bottomLeft()) in contains()
H A Dqgeopolygon.cpp193 << rect.bottomRight() << rect.bottomLeft(); in QGeoPolygon()
H A Dqdoublematrix4x4.cpp960 QPointF bl = map(rect.bottomLeft()); QPointF br = map(rect.bottomRight()); in mapRect()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/
H A Dqmapboxglstylechange.cpp78 … QMapbox::Coordinate bottomLeft { rect->bottomLeft().latitude(), rect->bottomLeft().longitude() }; in featureFromMapRectangle() local
86 …QMapbox::CoordinatesCollections geometry { { { bottomLeft, bottomRight, topRight, topLeft, bottomL… in featureFromMapRectangle()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/itemview_transitions/
H A Dmain.qml152 property point bottomLeft: Qt.point(center.x - half, center.y + half )
158 PathLine { x: c_sp1.bottomLeft.x; y: c_sp1.bottomLeft.y }
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/database/
H A Dbookdelegate.cpp96 painter->drawLine(option.rect.bottomLeft(), option.rect.bottomRight()); in paint()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeorectangle/
H A Dtst_qgeorectangle.cpp341 QFETCH(QGeoCoordinate, bottomLeft); in corners()
346 QCOMPARE(box.bottomLeft(), bottomLeft); in corners()
399 QCOMPARE(box.bottomLeft(), QGeoCoordinate(0.0, -10.0)); in setCorners()
406 QCOMPARE(box.bottomLeft(), QGeoCoordinate(0.0, -10.0)); in setCorners()
413 QCOMPARE(box.bottomLeft(), QGeoCoordinate(-10.0, -10.0)); in setCorners()
420 QCOMPARE(box.bottomLeft(), QGeoCoordinate(-20.0, -20.0)); in setCorners()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeotiledmapscene.cpp465 const QPointF blt = matrix * tileRect.bottomLeft(); in qgeotiledmapscene_isTileInViewport_rotationTilt()