removed deprecaded functions

.

.
This commit is contained in:
mos
2024-02-20 17:25:29 +01:00
committed by Yorik van Havre
parent e1ca8c8cc0
commit a025af2d26
12 changed files with 1 additions and 89 deletions

View File

@@ -67,10 +67,6 @@ void AbstractMouseSelection::releaseMouseModel(bool abort)
}
}
void AbstractMouseSelection::redraw()
{
// obsolete
}
int AbstractMouseSelection::handleEvent(const SoEvent* const ev, const SbViewportRegion& vp)
{

View File

@@ -73,8 +73,6 @@ public:
return m_selectedRole;
}
void redraw();
/** @name Mouse events*/
//@{
int handleEvent(const SoEvent* const ev, const SbViewportRegion& vp);

View File

@@ -1082,11 +1082,6 @@ void NavigationStyle::moveCursorPosition()
}
}
void NavigationStyle::redraw()
{
if (mouseSelection)
mouseSelection->redraw();
}
SbBool NavigationStyle::handleEventInForeground(const SoEvent* const e)
{

View File

@@ -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);

View File

@@ -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();