Gui: Use override etc 2

This commit is contained in:
berniev
2022-08-09 13:56:15 +10:00
committed by wwmayer
parent 810c3780de
commit 75fa455c5d
213 changed files with 1723 additions and 1723 deletions

View File

@@ -93,23 +93,23 @@ public:
{
}
void setViewVolume (const SbViewVolume &vol)
void setViewVolume (const SbViewVolume &vol) override
{
inherited::setViewVolume(vol);
}
void setWorkingSpace (const SbMatrix &space)
void setWorkingSpace (const SbMatrix &space) override
{
//inherited::setWorkingSpace(space);
this->worldToScreen = space.inverse();
}
SbVec3f project(const SbVec2f &point)
SbVec3f project(const SbVec2f &point) override
{
return inherited::project(point);
}
SbRotation getRotation(const SbVec3f &point1, const SbVec3f &point2)
SbRotation getRotation(const SbVec3f &point1, const SbVec3f &point2) override
{
SbRotation rot = inherited::getRotation(point1, point2);
if (orbit == Trackball)