osg 嵌入Qt 窗口

本文提供了一个示例,演示如何在Qt应用程序中嵌入OpenSceneGraph(osg)以显示3D模型。通过继承自Qt的QGLWidget类并利用osg::GraphicsWindowQt,成功将3D视图集成到Qt窗口。同时,借助定时器确保场景的实时更新。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

osg嵌入Qt窗口完整代码的一个示例:

#include <QApplication>
#include <QWidget>
#include <QVBoxLayout>
#include <QPushButton>
#include <QTimer>

#include <osgViewer/Viewer>
#include <osgDB/ReadFile>
#include <osgGA/TrackballManipulator>

class OSGWidget : public QWidget
{
public:
    OSGWidget(QWidget* parent = nullptr)
        : QWidget(parent, Qt::Widget)
        , _viewer(new osgViewer::Viewer())
    {
        // Create a widget to contain the osg viewer
        QWidget* widget = QWidget::createWindowContainer(_viewer->setUpViewerAsEmbeddedInWindow(0, 0, width(), height()));

        // Set up the camera manipulator
        _viewer->setCameraManipulator(new osgGA::TrackballManipulator);

        // Load a model to display
        osg::ref_ptr<osg::Node> scene = osgDB::readNodeFile("cow.osg");
        if (scene)
        {
            _viewer->setSceneData(scene);
        }

        // Connect the ti
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值