removed deprecaded functions
. .
This commit is contained in:
@@ -67,10 +67,6 @@ void AbstractMouseSelection::releaseMouseModel(bool abort)
|
||||
}
|
||||
}
|
||||
|
||||
void AbstractMouseSelection::redraw()
|
||||
{
|
||||
// obsolete
|
||||
}
|
||||
|
||||
int AbstractMouseSelection::handleEvent(const SoEvent* const ev, const SbViewportRegion& vp)
|
||||
{
|
||||
|
||||
@@ -73,8 +73,6 @@ public:
|
||||
return m_selectedRole;
|
||||
}
|
||||
|
||||
void redraw();
|
||||
|
||||
/** @name Mouse events*/
|
||||
//@{
|
||||
int handleEvent(const SoEvent* const ev, const SbViewportRegion& vp);
|
||||
|
||||
@@ -1082,11 +1082,6 @@ void NavigationStyle::moveCursorPosition()
|
||||
}
|
||||
}
|
||||
|
||||
void NavigationStyle::redraw()
|
||||
{
|
||||
if (mouseSelection)
|
||||
mouseSelection->redraw();
|
||||
}
|
||||
|
||||
SbBool NavigationStyle::handleEventInForeground(const SoEvent* const e)
|
||||
{
|
||||
|
||||
@@ -149,8 +149,6 @@ public:
|
||||
void setRotationCenter(const SbVec3f& cnt);
|
||||
SbVec3f getFocalPoint() const;
|
||||
|
||||
void redraw();
|
||||
|
||||
SoCamera* getCamera() const;
|
||||
void setCameraOrientation(const SbRotation& orientation, SbBool moveToCenter = false);
|
||||
void translateCamera(const SbVec3f& translation);
|
||||
|
||||
@@ -2271,7 +2271,6 @@ void View3DInventorViewer::renderFramebuffer()
|
||||
glEnd();
|
||||
|
||||
printDimension();
|
||||
navigation->redraw();
|
||||
|
||||
for (auto it : this->graphicsItems) {
|
||||
it->paintGL();
|
||||
@@ -2305,7 +2304,6 @@ void View3DInventorViewer::renderGLImage()
|
||||
glDrawPixels(glImage.width(), glImage.height(), GL_BGRA,GL_UNSIGNED_BYTE, glImage.bits());
|
||||
|
||||
printDimension();
|
||||
navigation->redraw();
|
||||
|
||||
for (auto it : this->graphicsItems) {
|
||||
it->paintGL();
|
||||
@@ -2403,7 +2401,6 @@ void View3DInventorViewer::renderScene()
|
||||
}
|
||||
|
||||
printDimension();
|
||||
navigation->redraw();
|
||||
|
||||
for (auto it : this->graphicsItems) {
|
||||
it->paintGL();
|
||||
|
||||
Reference in New Issue
Block a user