Qt Quick 3D - Antialiasing Example (original) (raw)

/**************************************************************************** ** ** Copyright (C) 2020 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the examples of the Qt Toolkit. ** ** QTBEGINLICENSE:BSDQT_BEGIN_LICENSE:BSDQTBEGINLICENSE:BSD ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** BSD License Usage ** Alternatively, you may use this file under the terms of the BSD license ** as follows: ** ** "Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of The Qt Company Ltd nor the names of its ** contributors may be used to endorse or promote products derived ** from this software without specific prior written permission. ** ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." ** ** QTENDLICENSEQT_END_LICENSEQTENDLICENSE ** ****************************************************************************/

import QtQuick 2.14 import QtQuick.Window 2.14 import QtQuick3D 1.15 import QtQuick.Controls 2.12 import QtQuick.Layouts 1.12

Window { visible: true width: 800 height: 600 title: qsTr("Quick3D Antialiasing Example") color: "black"

[View3D](qml-qtquick3d-view3d.html) {
    id: view3D
    property [real](qml-real.html) animationValue: 0.0
    anchors.fill: parent

    SequentialAnimation on animationValue {
        id: modelAnimation
        running: false
        [NumberAnimation](qml-qtquick-numberanimation.html) {
            from: 0.0
            to: 1.0
            duration: 1000
            easing.type: Easing.InOutQuad
        }
        [NumberAnimation](qml-qtquick-numberanimation.html) {
            from: 1.0
            to: 0.0
            duration: 1000
            easing.type: Easing.InOutQuad
        }
    }

    [PerspectiveCamera](qml-qtquick3d-perspectivecamera.html) {
        z: 500
    }

    [DirectionalLight](qml-qtquick3d-directionallight.html) {
        eulerRotation.x: -30
    }
    environment: SceneEnvironment {
        id: sceneEnvironment
        clearColor: "#f0f0f0"
        backgroundMode: SceneEnvironment.Color

        antialiasingMode: modeButton1.checked ? SceneEnvironment.NoAA : modeButton2.checked
                                                ? SceneEnvironment.SSAA : modeButton3.checked
                                                  ? SceneEnvironment.MSAA : SceneEnvironment.ProgressiveAA

        antialiasingQuality: qualityButton1.checked ? SceneEnvironment.Medium : qualityButton2.checked
                                                      ? SceneEnvironment.High : SceneEnvironment.VeryHigh
        temporalAAEnabled: temporalModeButton.checked
        temporalAAStrength: temporalStrengthSlider.value
    }

    [Node](qml-qtquick3d-node.html) {
        id: scene

        [Model](qml-qtquick3d-model.html) {
            source: "#Cube"
            eulerRotation.y: 45
            eulerRotation.x: 30 + view3D.animationValue * 100
            scale: Qt.vector3d(2, 2, 2)
            materials: DefaultMaterial {
                diffuseColor: "#4aee45"
            }
        }

        [Model](qml-qtquick3d-model.html) {
            source: "#Cube"
            x: 200
            y: 150 + view3D.animationValue * 10
            eulerRotation.y: 5
            eulerRotation.x: 5
            scale: Qt.vector3d(0.5, 0.5, 0.5)
            materials: DefaultMaterial {
                diffuseColor: "#faee45"
            }
        }

        [Model](qml-qtquick3d-model.html) {
            source: "#Sphere"
            x: 120
            y: -40
            z: 160 + view3D.animationValue * 40
            scale: Qt.vector3d(1.5, 1.5, 1.5)
            materials: DefaultMaterial {
                diffuseColor: Qt.rgba(0.8, 0.8, 0.8, 1.0)
            }
        }
    }
}

[Rectangle](qml-qtquick-rectangle.html) {
    anchors.fill: settingsArea
    anchors.margins: -10
    color: "#c0c0c0"
    border.color: "#202020"
}

[ColumnLayout](qml-qtquick-layouts-columnlayout.html) {
    id: settingsArea
    anchors.top: parent.top
    anchors.left: parent.left
    anchors.margins: 20
    [Text](qml-qtquick-text.html) {
        Layout.alignment: Qt.AlignHCenter
        font.bold: true
        text: "antialiasingMode"
    }
    [RadioButton](qml-qtquick-controls2-radiobutton.html) {
        id: modeButton1
        checked: true
        text: qsTr("NoAA")
    }
    [RadioButton](qml-qtquick-controls2-radiobutton.html) {
        id: modeButton2
        text: qsTr("SSAA")
    }
    [RadioButton](qml-qtquick-controls2-radiobutton.html) {
        id: modeButton3
        text: qsTr("MSAA")
    }
    [RadioButton](qml-qtquick-controls2-radiobutton.html) {
        id: modeButton4
        text: qsTr("ProgressiveAA")
    }
    [Rectangle](qml-qtquick-rectangle.html) {
        Layout.fillWidth: true
        height: 1
        color: "#909090"
    }
    [Text](qml-qtquick-text.html) {
        Layout.alignment: Qt.AlignHCenter
        font.bold: true
        text: "antialiasingQuality"
    }
    [ButtonGroup](qml-qtquick-controls2-buttongroup.html) {
        buttons: antialiasingQualityColumn.children
    }
    [ColumnLayout](qml-qtquick-layouts-columnlayout.html) {
        id: antialiasingQualityColumn
        [RadioButton](qml-qtquick-controls2-radiobutton.html) {
            id: qualityButton1
            text: qsTr("Normal")
        }
        [RadioButton](qml-qtquick-controls2-radiobutton.html) {
            id: qualityButton2
            checked: true
            text: qsTr("High")
        }
        [RadioButton](qml-qtquick-controls2-radiobutton.html) {
            id: qualityButton3
            text: qsTr("VeryHigh")
        }
    }
    [Rectangle](qml-qtquick-rectangle.html) {
        Layout.fillWidth: true
        height: 1
        color: "#909090"
    }
    [CheckBox](qml-qtquick-controls2-checkbox.html) {
        id: temporalModeButton
        text: "temporalAAEnabled"
    }
    [Item](qml-qtquick-item.html) { width: 1; height: 10 }
    [Slider](qml-qtquick-controls2-slider.html) {
        id: temporalStrengthSlider
        from: 0.0
        to: 2.0
        value: 0.3
        [Text](qml-qtquick-text.html) {
            anchors.horizontalCenter: parent.horizontalCenter
            anchors.bottom: parent.verticalCenter
            anchors.bottomMargin: 16
            text: "temporalAAStrength: " + temporalStrengthSlider.value.toFixed(2);
            z: 10
        }
    }
    [Rectangle](qml-qtquick-rectangle.html) {
        Layout.fillWidth: true
        height: 1
        color: "#909090"
    }
    [Button](qml-qtquick-controls2-button.html) {
        id: animationButton
        Layout.alignment: Qt.AlignHCenter
        text: "Animate!"
        onClicked: {
            modelAnimation.restart();
        }
    }
}

}