From 2d30324c2887885f1f2fac9df5937eb246fe44a2 Mon Sep 17 00:00:00 2001 From: dkulikov Date: Tue, 24 Sep 2024 09:49:19 +0000 Subject: [PATCH] small fix --- src/STEPConstruct/STEPConstruct_Styles.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/STEPConstruct/STEPConstruct_Styles.cxx b/src/STEPConstruct/STEPConstruct_Styles.cxx index 50518d23f7..d2e4069280 100644 --- a/src/STEPConstruct/STEPConstruct_Styles.cxx +++ b/src/STEPConstruct/STEPConstruct_Styles.cxx @@ -162,10 +162,6 @@ namespace { return Standard_False; } - if (theSide == StepVisual_ssNegative) - { - return Standard_True; - } const Handle(StepVisual_FillAreaStyle) aFAS = aSSFA->FillArea(); if (aFAS.IsNull()) { @@ -176,7 +172,11 @@ namespace { const StepVisual_FillStyleSelect aFSS = aFAS->FillStylesValue(aFSSIndex); const Handle(StepVisual_FillAreaStyleColour) aFASC = aFSS.FillAreaStyleColour(); - if (!aFASC.IsNull() && theSurfaceColour.IsNull()) //abv 30 Mar 00: trj3_s1-pe.stp + if (!aFASC.IsNull() + // If current surface color is null, we will use negative side color. + // Otherwise negative side color is ignored. + && (theSurfaceColour.IsNull() + || theSide != StepVisual_ssNegative)) //abv 30 Mar 00: trj3_s1-pe.stp { theSurfaceColour = aFASC->FillColour(); }