加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
opengl3dwidget.cpp 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
Zhengjun-Du 提交于 2021-07-02 11:47 . first commit
#include "opengl3dwidget.h"
#include<QMouseEvent>
#include<QDebug>
// basic OpenGL 3D Widget
OpenGL3DWidget::OpenGL3DWidget(QWidget *parent) : OpenGLWidget(parent), rotate_x(-15), rotate_y(-70), rotate_z(0), lastPos(0, 0)
{
lastPos.setX(0);
lastPos.setY(0);
}
void OpenGL3DWidget::paintGL()
{
OpenGLWidget::paintGL();
// Otras transformaciones
// glTranslatef( 0.1, 0.0, 0.0 ); // No incluido
// glRotatef( 180, 0.0, 1.0, 0.0 ); // No incluido
// Rotar cuando el usuario cambie “rotate_x” y “rotate_y”
glRotatef( rotate_x, 1.0, 0.0, 0.0 );
glRotatef( rotate_y, 0.0, 1.0, 0.0 );
glRotatef( rotate_z, 0.0, 0.0, 1.0 );
glScalef( 1.2, 1.2, -1.2 );
}
void OpenGL3DWidget::mousePressEvent(QMouseEvent *event)
{
lastPos = event->pos();
}
void OpenGL3DWidget::mouseMoveEvent(QMouseEvent *event)
{
QOpenGLWidget::mouseMoveEvent(event);
if (event->buttons() & Qt::LeftButton)
{
int dx = event->x() - lastPos.x();
int dy = event->y() - lastPos.y();
// qDebug() << rotate_x << rotate_y << event->x() << event->y() << lastPos.x() << lastPos.y();
lastPos = event->pos();
rotate_x -= dy;
rotate_y -= dx;
qDebug() << "mouseMoveEvent" << rotate_x << rotate_y;
update();
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化