can i use qt widget to import obj file?
-
scenario: the current program is developed through qtwidget, and when i wanna add 3d thing on to it, i cant find any examples about how to import obj file in qt widget.
I find many resources about importing 3d thing to qml project. But it seems ask me to rewrite the whole project just because i wanna add 3d thing.
Can someone give me some tips about these issues? -
@piercashuang You should check https://doc.qt.io/qt-6/qt3d-index.html
Normal Qt Widgets have nothing to do with 3D.Hi,
Even if the only solutions you find are for QML, you can create a QQuickWidget to integrate that view into your application.
-
scenario: the current program is developed through qtwidget, and when i wanna add 3d thing on to it, i cant find any examples about how to import obj file in qt widget.
I find many resources about importing 3d thing to qml project. But it seems ask me to rewrite the whole project just because i wanna add 3d thing.
Can someone give me some tips about these issues?@piercashuang You should check https://doc.qt.io/qt-6/qt3d-index.html
Normal Qt Widgets have nothing to do with 3D. -
@piercashuang You should check https://doc.qt.io/qt-6/qt3d-index.html
Normal Qt Widgets have nothing to do with 3D.Hi,
Even if the only solutions you find are for QML, you can create a QQuickWidget to integrate that view into your application.
-
Hi,
Even if the only solutions you find are for QML, you can create a QQuickWidget to integrate that view into your application.
@SGaist yeah,sounds good, i think it is kinda of hybrid development
-