1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

small fix

This commit is contained in:
dkulikov 2024-09-23 18:20:05 +00:00
parent 15bd298c3a
commit 7b6f1c7592

View File

@ -213,8 +213,8 @@ namespace
// SurfaceStyleFillArea, SurfaceStyleBoundary, SurfaceStyleRendering.
// So we're using && operator to stop as soon as this type is processed.
ProcessAsSurfaceStyleFillArea(aSSES, aSSU->Side(), theSurfaceColour)
&& ProcessAsSurfaceStyleBoundary(aSSES, theBoundaryColour)
&& ProcessAsSurfaceStyleRendering(aSSES, theRenderColour, theRenderTransparency);
|| ProcessAsSurfaceStyleBoundary(aSSES, theBoundaryColour)
|| ProcessAsSurfaceStyleRendering(aSSES, theRenderColour, theRenderTransparency);
}
return Standard_True;
}
@ -799,7 +799,7 @@ Standard_Boolean STEPConstruct_Styles::GetColors(const Handle(StepVisual_StyledI
theBoundaryColour,
theRenderColour,
theRenderTransparency)
&& ProcessAsCurveStyle(aPSS, theCurveColour);
|| ProcessAsCurveStyle(aPSS, theCurveColour);
}
}
return !theSurfaceColour.IsNull() || !theBoundaryColour.IsNull() || !theCurveColour.IsNull()