summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2014-02-06 14:00:25 +0200
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2014-02-06 14:23:31 +0200
commit811be6f81b2e8c4d9d23cff5b4287c8a5dc86fc3 (patch)
tree549f2a46531c853893e31083a12d3729d07c4a86 /examples
parente91237b54c2f58eaa8a2ce36bf016e2d8e8588f2 (diff)
Change rotations to use angle and vector in APIs
Quaternions are pain in the behind to use, especially in QML, so change them to angle + vector combinations. Change-Id: I25eb5ea92deaf3a079e2e193cce2e8de89f3c3c4 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/qmloscilloscope/datasource.cpp7
-rw-r--r--examples/qmloscilloscope/datasource.h3
-rw-r--r--examples/qmloscilloscope/main.cpp2
3 files changed, 3 insertions, 9 deletions
diff --git a/examples/qmloscilloscope/datasource.cpp b/examples/qmloscilloscope/datasource.cpp
index 3d2f908d..922ed576 100644
--- a/examples/qmloscilloscope/datasource.cpp
+++ b/examples/qmloscilloscope/datasource.cpp
@@ -17,18 +17,14 @@
****************************************************************************/
#include "datasource.h"
-#include <QtQuick/QQuickView>
-#include <QtQuick/QQuickItem>
-#include <QDebug>
#include <qmath.h>
using namespace QtDataVisualization;
Q_DECLARE_METATYPE(QSurface3DSeries *)
-DataSource::DataSource(QQuickView *appViewer, QObject *parent) :
+DataSource::DataSource(QObject *parent) :
QObject(parent),
- m_appViewer(appViewer),
m_index(-1),
m_resetArray(0)
{
@@ -46,7 +42,6 @@ void DataSource::generateData(int cacheCount, int rowCount, int columnCount,
float zMin, float zMax)
{
clearData();
-
// Re-create the cache array
m_data.resize(cacheCount);
for (int i(0); i < cacheCount; i++) {
diff --git a/examples/qmloscilloscope/datasource.h b/examples/qmloscilloscope/datasource.h
index 6ef0cacb..51d3e8e0 100644
--- a/examples/qmloscilloscope/datasource.h
+++ b/examples/qmloscilloscope/datasource.h
@@ -30,7 +30,7 @@ class DataSource : public QObject
{
Q_OBJECT
public:
- explicit DataSource(QQuickView *appViewer, QObject *parent = 0);
+ explicit DataSource(QObject *parent = 0);
virtual ~DataSource();
//! [0]
@@ -46,7 +46,6 @@ public slots:
private:
void clearData();
- QQuickView *m_appViewer;
QVector<QSurfaceDataArray> m_data;
int m_index;
QSurfaceDataArray *m_resetArray;
diff --git a/examples/qmloscilloscope/main.cpp b/examples/qmloscilloscope/main.cpp
index c4e2430a..8cbaba71 100644
--- a/examples/qmloscilloscope/main.cpp
+++ b/examples/qmloscilloscope/main.cpp
@@ -44,7 +44,7 @@ int main(int argc, char *argv[])
viewer.setTitle(QStringLiteral("Oscilloscope example"));
//! [0]
- DataSource dataSource(&viewer);
+ DataSource dataSource;
viewer.rootContext()->setContextProperty("dataSource", &dataSource);
//! [0]