Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Inventor/Qt/SoQt.h
✓ #include <Inventor/Qt/SoQt.h>
Initialize SoQt and display a 3D cone
#include <Inventor/Qt/SoQt.h>
#include <Inventor/Qt/SoQtRenderArea.h>
#include <Inventor/nodes/SoCone.h>
int main(int argc, char **argv) {
QWidget *window = SoQt::init(argc, argv, argv[0]);
SoQtRenderArea *renderArea = new SoQtRenderArea(window);
renderArea->setSceneGraph(new SoCone);
renderArea->show();
SoQt::show(window);
SoQt::mainLoop();
return 0;
}
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.