Matrix4x4 QML Type

Item に 4x4 の変換行列を適用する方法を提供する... 詳細表示

Import Statement: import QtQuick

プロパティ

詳細説明

Matrix4x4 型は、4x4 の行列を通してItem に変換を適用する方法を提供します。

これは、4x4行列で提供される1つの変換を使用するだけで、回転、スケール、平行移動、せん断の組み合わせを可能にします。

次の例は、矩形を45度(PI/4)回転させます:

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)
    }
}

プロパティの説明

matrix : matrix4x4

4x4-matrixの変形に使用される。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.