VS+QT+OCC创建坐标界面

1、安装并配置好项目后,填写如下代码:

cpp 复制代码
#pragma once

#include <Standard_Handle.hxx>
#include <V3d_Viewer.hxx>
#include <OpenGl_GraphicDriver.hxx>
#include <WNT_Window.hxx>
#include <V3d_View.hxx>
#include <AIS_InteractiveContext.hxx>
#include <BRepPrimAPI_MakeBox.hxx>
#include <TopoDs_Shape.hxx>
#include <AIS_Shape.hxx>

#include <QtWidgets/QMainWindow>
#include "ui_OCC1.h"
#include <QDebug>

class V3d_Viewer;
class V3d_View;
class AIS_InteractiveContext;
class AIS_ViewController;


class OCC1 : public QMainWindow
{
    Q_OBJECT

public:
    OCC1(QWidget *parent = nullptr);
    ~OCC1();


    void paintEvent(QPaintEvent* event);

    QPaintEngine* paintEngine() const;
private:
    Ui::OCC1Class ui;

    Handle(V3d_Viewer) viewer;
    Handle(V3d_View) view;
    Handle(WNT_Window) window;
    Handle(AIS_InteractiveContext) context;
};
cpp 复制代码
#include "OCC1.h"

OCC1::OCC1(QWidget *parent)
    : QMainWindow(parent)
{
    ui.setupUi(this);

    Handle(Aspect_DisplayConnection) hAspect_DisplayConnect = new Aspect_DisplayConnection;
    Handle(OpenGl_GraphicDriver) driver = new OpenGl_GraphicDriver(hAspect_DisplayConnect);

    viewer = new V3d_Viewer(driver);
    view = viewer->CreateView();

    WId window_handle = (WId)winId();
    //WId win_handle = winId();
    window = new WNT_Window((Aspect_Handle)window_handle);
    view->SetWindow(window);
    if (!window->IsMapped())
    {
        window->Map();//打开窗口
    }
    view->SetBackgroundColor(Quantity_NOC_BLACK);
    view->MustBeResized();
    view->TriedronDisplay(Aspect_TOTP_LEFT_LOWER, Quantity_NOC_GOLD, 0.08, V3d_ZBUFFER);

    viewer->SetDefaultLights();
    setAttribute(Qt::WA_PaintOnScreen);

    context = new AIS_InteractiveContext(viewer);
    context->SetDisplayMode(AIS_Shaded, Standard_True);
}

OCC1::~OCC1()
{}

void OCC1::paintEvent(QPaintEvent* event)
{
    view->Redraw();
}

QPaintEngine* OCC1::paintEngine() const
{
    return 0;
}
cpp 复制代码
#include "OCC1.h"
#include <QtWidgets/QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    OCC1 w;
    w.show();
    return a.exec();
}

2、运行结果:

相关推荐
是乙太呀12 分钟前
php反序列化1_常见php序列化的CTF考题
开发语言·web安全·渗透测试·php·ctf·反序列化
WZF-Sang16 分钟前
Linux—进程概念学习-03
linux·运维·服务器·c语言·开发语言·学习·vim
蓝晶之心21 分钟前
JAVA之若依框架——达梦数据库
java·开发语言·数据库
凡人的AI工具箱26 分钟前
40分钟学 Go 语言高并发:【实战】并发安全的配置管理器
开发语言·网络·后端·安全·golang
martian66530 分钟前
C# 基于WPF实现数据记录导出excel
开发语言·c#·excel
littlegirll1 小时前
KADB支持arm架构Pro*c
c语言·开发语言·架构
小志biubiu1 小时前
【C++11】可变参数模板/新的类功能/lambda/包装器--C++
开发语言·c++·笔记·学习·c++11·c11
新知图书1 小时前
Rust编程与项目实战-模块std::thread(之二)
开发语言·rust
WALL-EC1 小时前
VS2019+QT5.12 创建UI(Dialog窗体)界面自动生成.h和cpp文件
开发语言·qt·ui
sususugaa1 小时前
前端框架Vue3——响应式数据,v-on,v-show和v-if,v-for,v-bind
开发语言·前端·vue.js·前端框架