1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QTest>
#include <QtQuick>
#include <QtQuick/private/qquicktranslate_p.h>
QT_BEGIN_NAMESPACE
class tst_qquicktransform : public QObject
{
Q_OBJECT
private slots:
void shearTransform();
};
void tst_qquicktransform::shearTransform()
{
const QRect rect(10, 20, 100, 200);
{
QQuickShear shear;
shear.setXFactor(1.0);
shear.setOrigin(QVector3D(rect.topLeft()));
QMatrix4x4 matrix;
shear.applyTo(&matrix);
QRect mappedRect = matrix.mapRect(rect);
QCOMPARE(mappedRect.topLeft(), rect.topLeft());
QCOMPARE(mappedRect.bottomRight(), rect.bottomRight() + QPoint(rect.height(), 0.0));
}
{
QQuickShear shear;
shear.setOrigin(QVector3D(rect.topLeft()));
shear.setYFactor(0.5);
QMatrix4x4 matrix;
shear.applyTo(&matrix);
QRect mappedRect = matrix.mapRect(rect);
QCOMPARE(mappedRect.topLeft(), rect.topLeft());
QCOMPARE(mappedRect.bottomRight(), rect.bottomRight() + QPoint(0.0, rect.width() * 0.5));
}
{
QQuickShear shear;
shear.setOrigin(QVector3D(rect.topLeft()));
shear.setXFactor(1.0);
shear.setYFactor(0.5);
QMatrix4x4 matrix;
shear.applyTo(&matrix);
QRect mappedRect = matrix.mapRect(rect);
QCOMPARE(mappedRect.topLeft(), rect.topLeft());
QCOMPARE(mappedRect.bottomRight(), rect.bottomRight() + QPoint(rect.height(), rect.width() * 0.5));
}
{
QQuickShear shear;
shear.setOrigin(QVector3D(rect.topLeft()));
shear.setXFactor(0.5);
shear.setXAngle(qAtan(0.5) * 180.0 / M_PI);
QMatrix4x4 matrix;
shear.applyTo(&matrix);
QRect mappedRect = matrix.mapRect(rect);
QCOMPARE(mappedRect.topLeft(), rect.topLeft());
QCOMPARE(mappedRect.bottomRight(), rect.bottomRight() + QPoint(rect.height(), 0.0));
}
{
QQuickShear shear;
shear.setOrigin(QVector3D(rect.topLeft()));
shear.setYFactor(0.25);
shear.setYAngle(qAtan(0.25) * 180.0 / M_PI);
QMatrix4x4 matrix;
shear.applyTo(&matrix);
QRect mappedRect = matrix.mapRect(rect);
QCOMPARE(mappedRect.topLeft(), rect.topLeft());
QCOMPARE(mappedRect.bottomRight(), rect.bottomRight() + QPoint(0.0, rect.width() * 0.5));
}
}
QT_END_NAMESPACE
QTEST_MAIN(tst_qquicktransform)
#include "tst_qquicktransform.moc"
|