Matrix4x4 QML Type

Bietet eine Möglichkeit, eine 4x4-Transformationsmatrix auf eine Item anzuwenden. Mehr...

Import Statement: import QtQuick

Eigenschaften

Detaillierte Beschreibung

Der Matrix4x4-Typ bietet eine Möglichkeit, eine Transformation auf Item durch eine 4x4-Matrix anzuwenden.

Er ermöglicht eine Kombination von Rotation, Skalierung, Translation und Scherung durch die Verwendung einer einzigen Transformation, die in einer 4x4-Matrix bereitgestellt wird.

Im folgenden Beispiel wird ein Rechteck um 45 Grad (PI/4) gedreht:

Rectangle {
    width: 100
    height: 100
    color: "red"

    transform: Matrix4x4 {
        property real a: Math.PI / 4
        matrix: Qt.matrix4x4(Math.cos(a), -Math.sin(a), 0, 0,
                             Math.sin(a),  Math.cos(a), 0, 0,
                             0,           0,            1, 0,
                             0,           0,            0, 1)
    }
}

Eigenschaft Dokumentation

matrix : matrix4x4

4x4-Matrix, die in der Transformation eines Rechtecks verwendet wird. Item


© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.