17#include "moc_qgsgeotransform.cpp"
22QgsGeoTransform::QgsGeoTransform( Qt3DCore::QNode *parent )
27void QgsGeoTransform::setGeoTranslation(
const QgsVector3D &translation )
29 mTranslation = translation;
30 setTranslation( ( mTranslation - mOrigin ).toVector3D() );
33void QgsGeoTransform::setOrigin(
const QgsVector3D &origin )
36 setTranslation( ( mTranslation - mOrigin ).toVector3D() );
Class for storage of 3D vectors similar to QVector3D, with the difference that it uses double precisi...