removed unused example

This commit is contained in:
mos
2024-01-30 11:43:12 +01:00
committed by Chris Hennes
parent fc6d4b6d0f
commit 81d7d542e4
4 changed files with 0 additions and 490 deletions

View File

@@ -67,7 +67,6 @@
#include "SoFCDB.h"
#include "SoFCSelectionAction.h"
#include "SoFCVectorizeSVGAction.h"
#include "View3DInventorExamples.h"
#include "View3DInventorViewer.h"
#include "View3DPy.h"
#include "ViewProvider.h"
@@ -332,24 +331,6 @@ bool View3DInventor::onMsg(const char* pMsg, const char** ppReturn)
_viewer->setStereoMode(Quarter::SoQTQuarterAdaptor::MONO );
return true;
}
else if(strcmp("Example1",pMsg) == 0 ) {
auto root = new SoSeparator;
Texture3D(root);
_viewer->setSceneGraph(root);
return true;
}
else if(strcmp("Example2",pMsg) == 0 ) {
auto root = new SoSeparator;
LightManip(root);
_viewer->setSceneGraph(root);
return true;
}
else if(strcmp("Example3",pMsg) == 0 ) {
auto root = new SoSeparator;
AnimationTexture(root);
_viewer->setSceneGraph(root);
return true;
}
else if(strcmp("GetCamera",pMsg) == 0 ) {
SoCamera * Cam = _viewer->getSoRenderManager()->getCamera();
if (!Cam)
@@ -487,15 +468,6 @@ bool View3DInventor::onHasMsg(const char* pMsg) const
else if(strcmp("SetStereoOff",pMsg) == 0) {
return true;
}
else if(strcmp("Example1",pMsg) == 0) {
return true;
}
else if(strcmp("Example2",pMsg) == 0) {
return true;
}
else if(strcmp("Example3",pMsg) == 0) {
return true;
}
else if(strcmp("ViewFit",pMsg) == 0) {
return true;
}