fix msvc problems

This commit is contained in:
wmayer
2016-09-21 22:14:09 +02:00
parent 41b1eca0e7
commit fb9cd567d3
4 changed files with 32 additions and 21 deletions

View File

@@ -218,11 +218,11 @@ void SoFCBoundingBox::GLRender (SoGLRenderAction *action)
state->pop();
}
void SoFCBoundingBox::generatePrimitives (SoAction */*action*/)
void SoFCBoundingBox::generatePrimitives (SoAction * /*action*/)
{
}
void SoFCBoundingBox::computeBBox (SoAction */*action*/, SbBox3f &box, SbVec3f &center)
void SoFCBoundingBox::computeBBox (SoAction * /*action*/, SbBox3f &box, SbVec3f &center)
{
center = (minBounds.getValue() + maxBounds.getValue()) / 2.0f;
box.setBounds(minBounds.getValue(), maxBounds.getValue());