blob: c80ee0dc54bb16780e49e64587aadd6ddd1f6f74 [file] [log] [blame]
import QtQuick 2.0
Item {
property bool success: false
property variant v1: Qt.vector4d(1,2,3,4)
property variant v2: Qt.vector4d(5,6,7,8)
property variant m1: Qt.matrix4x4(5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8)
property real factor: 2.23
Component.onCompleted: {
success = true;
if (v1.times(v2) != Qt.vector4d(5, 12, 21, 32)) success = false;
if (v1.times(m1) != Qt.vector4d(70, 70, 70, 70)) success = false;
if (v1.times(factor) != Qt.vector4d(2.23, 4.46, 6.69, 8.92)) success = false;
if (v1.plus(v2) != Qt.vector4d(6, 8, 10, 12)) success = false;
if (v2.minus(v1) != Qt.vector4d(4, 4, 4, 4)) success = false;
if (!v1.normalized().fuzzyEquals(Qt.vector4d(0.182574, 0.365148, 0.547723, 0.730297), 0.00001)) success = false;
if ((v1.length() == v2.length()) || (v1.length() != Qt.vector4d(4,3,2,1).length())) success = false;
if (v1.toVector2d() != Qt.vector2d(1,2)) success = false;
if (v1.toVector3d() != Qt.vector3d(1,2,3)) success = false;
if (v1.fuzzyEquals(v2)) success = false;
if (!v1.fuzzyEquals(v2, 4)) success = false;
}
}