summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_posewidget/glwidget.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-10-22 19:16:36 +0200
committerStanislaw Halik <sthalik@misaki.pl>2014-10-22 19:17:32 +0200
commit543daf2394f534e5052e8055307415fa8ab7d407 (patch)
tree6ccda1a752e96d436fe48630a32739118a790962 /ftnoir_posewidget/glwidget.cpp
parent22298d17732d76caab3c6582c5fbcb33e5bbb292 (diff)
fix statically linked octopus
Diffstat (limited to 'ftnoir_posewidget/glwidget.cpp')
-rw-r--r--ftnoir_posewidget/glwidget.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/ftnoir_posewidget/glwidget.cpp b/ftnoir_posewidget/glwidget.cpp
index 26803385..2cd94f62 100644
--- a/ftnoir_posewidget/glwidget.cpp
+++ b/ftnoir_posewidget/glwidget.cpp
@@ -5,14 +5,17 @@
* copyright notice and this permission notice appear in all copies.
*/
-#include <QtGui>
#include "glwidget.h"
-#include <QWidget>
#include <cmath>
#include <algorithm>
+#include <QPainter>
+#include <QPaintEvent>
+
GLWidget::GLWidget(QWidget *parent) : QWidget(parent)
{
+ Q_INIT_RESOURCE(posewidget);
+
front = QImage(QString(":/images/side1.png"));
back = QImage(QString(":/images/side6.png"));
rotateBy(0, 0, 0);
@@ -23,7 +26,6 @@ GLWidget::~GLWidget()
}
void GLWidget::paintEvent ( QPaintEvent * event ) {
- QWidget::paintEvent(event);
QPainter p(this);
project_quad_texture();
p.drawImage(event->rect(), texture);
@@ -31,7 +33,7 @@ void GLWidget::paintEvent ( QPaintEvent * event ) {
void GLWidget::rotateBy(double xAngle, double yAngle, double zAngle)
{
-
+
double ch = cos(xAngle / 57.295781);
double sh = sin(xAngle / 57.295781);
double ca = cos(yAngle / 57.295781);