1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0023325: Always getting the transparency of the back face

Added the 'breaks' in the affected 'switch' statement.
This commit is contained in:
Pawel 2012-07-18 12:53:47 +02:00 committed by Pawel Kowalski
parent b804b20e23
commit e25709170a

View File

@ -220,8 +220,10 @@ Standard_Real aValue(0.);
case Aspect_TOFM_BOTH_SIDE:
case Aspect_TOFM_FRONT_SIDE:
aValue = myAspect->FrontMaterial().Transparency();
break;
case Aspect_TOFM_BACK_SIDE:
aValue = myAspect->BackMaterial().Transparency();
break;
}
return aValue;
}