summaryrefslogtreecommitdiffstats
path: root/tests/auto/render/boundingsphere/cube.qml
blob: b023ccf0a345cfff67280270834efa298074a40c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import Qt3D.Core 2.0
import Qt3D.Render 2.0
import Qt3D.Extras 2.0

Entity {
    id: sceneRoot

    components: [ ]

    // Parent Entity
    Entity {

        components: [
            CuboidMesh { id: testMesh; objectName: "testMesh" },
            PhongMaterial { id: material }
        ]
    }

}