1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-02 19:29:15 +01:00

41 lines
1.1 KiB
QML
Raw Normal View History

2016-02-22 23:15:18 +01:00
/*
* Copyright (C) 2016 The LibrePilot Project
2016-02-22 23:15:18 +01:00
* Contact: http://www.librepilot.org
*
* This file is part of LibrePilot GCS.
*
* LibrePilot GCS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LibrePilot GCS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LibrePilot GCS. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.4
2016-02-22 23:15:18 +01:00
2015-11-21 15:37:39 +01:00
import OsgQtQuick 1.0
Item {
OSGViewport {
anchors.fill: parent
focus: true
sceneData: cubeNode
camera: camera
OSGCubeNode {
id: cubeNode
}
OSGCamera {
id: camera
fieldOfView: 90
}
}
}