Textured Surface Example▲
Sélectionnez
/**
**************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Data Visualization module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL$
** 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.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
***************************************************************************
*/
#include
"surfacegraph.h"
#include
"topographicseries.h"
#include <QtDataVisualization/QValue3DAxis>
#include <QtDataVisualization/Q3DTheme>
using
namespace
QtDataVisualization;
const
float
areaWidth =
8000.0
f;
const
float
areaHeight =
8000.0
f;
const
float
aspectRatio =
0.1389
f;
const
float
minRange =
areaWidth *
0.49
f;
SurfaceGraph::
SurfaceGraph(Q3DSurface *
surface)
:
m_graph(surface)
{
m_graph-&
gt;setAxisX(new
QValue3DAxis);
m_graph-&
gt;setAxisY(new
QValue3DAxis);
m_graph-&
gt;setAxisZ(new
QValue3DAxis);
m_graph-&
gt;axisX()-&
gt;setLabelFormat("%i"
);
m_graph-&
gt;axisZ()-&
gt;setLabelFormat("%i"
);
m_graph-&
gt;axisX()-&
gt;setRange(0.0
f, areaWidth);
m_graph-&
gt;axisY()-&
gt;setRange(100.0
f, areaWidth *
aspectRatio);
m_graph-&
gt;axisZ()-&
gt;setRange(0.0
f, areaHeight);
m_graph-&
gt;axisX()-&
gt;setLabelAutoRotation(30
);
m_graph-&
gt;axisY()-&
gt;setLabelAutoRotation(90
);
m_graph-&
gt;axisZ()-&
gt;setLabelAutoRotation(30
);
m_graph-&
gt;activeTheme()-&
gt;setType(Q3DTheme::
ThemePrimaryColors);
QFont font =
m_graph-&
gt;activeTheme()-&
gt;font();
font.setPointSize(20
);
m_graph-&
gt;activeTheme()-&
gt;setFont(font);
m_topography =
new
TopographicSeries();
m_topography-&
gt;setTopographyFile(":/maps/topography"
, areaWidth, areaHeight);
m_topography-&
gt;setItemLabelFormat(QStringLiteral("@yLabel m"
));
m_highlight =
new
HighlightSeries();
m_highlight-&
gt;setTopographicSeries(m_topography);
m_highlight-&
gt;setMinHeight(minRange *
aspectRatio);
m_highlight-&
gt;handleGradientChange(areaWidth *
aspectRatio);
QObject::
connect(m_graph-&
gt;axisY(), &
amp;QValue3DAxis::
maxChanged,
m_highlight, &
amp;HighlightSeries::
handleGradientChange);
m_graph-&
gt;addSeries(m_topography);
m_graph-&
gt;addSeries(m_highlight);
m_inputHandler =
new
CustomInputHandler(m_graph);
m_inputHandler-&
gt;setHighlightSeries(m_highlight);
m_inputHandler-&
gt;setAxes(m_graph-&
gt;axisX(), m_graph-&
gt;axisY(), m_graph-&
gt;axisZ());
m_inputHandler-&
gt;setLimits(0.0
f, areaWidth, minRange);
m_inputHandler-&
gt;setAspectRatio(aspectRatio);
m_graph-&
gt;setActiveInputHandler(m_inputHandler);
}
SurfaceGraph::
~
SurfaceGraph()
{
delete
m_graph;
}
void
SurfaceGraph::
toggleSurfaceTexture(bool
enable)
{
if
(enable)
m_topography-&
gt;setTextureFile(":/maps/maptexture"
);
else
m_topography-&
gt;setTextureFile(""
);
}