Hey,
Just came across this project today after seeing it in the quicklisp repository. After reading around on the google code site, I can't seem to answer this question.
Is this the kind of system I can use to easily populate a scene with some geometry, open a window in which the scene will be rendered, and which allows me to "examine" the scene with the mouse? What I am looking for is something like the ExaminerViewer of Open Inventor.
For example, the Coin3D library allows you do something like:
SoQt::init(NULL);
SoSeparator *root = new SoSeparator;
SoMaterial *myMaterial = new SoMaterial;
myMaterial->diffuseColor.setValue(1.0, 0.0, 0.0);
root->addChild(myMaterial);
root->addChild(new SoCone);
SoQtExaminerViewer *myViewer = new SoQtExaminerViewer(NULL);
myViewer->setSceneGraph(root);
myViewer->show();
SoQt::mainLoop();
This creates a window which displays a scene consisting of a red cone, and allows the user to navigate (pan/zoom/rotate) with the mouse. I just want to
know if something like this is as simple with lispbuilder.
Thanks!
-Tom