Well Alloc plots: Differentiated gray colors for "Total", "Reservoir" and "Others"

This commit is contained in:
Jacob Støren 2017-02-17 11:18:58 +01:00
parent b00fe21726
commit b7b31f6c03

View File

@ -312,7 +312,11 @@ cvf::Color3f RimFlowDiagSolution::tracerColor(QString tracerName)
}
}
return cvf::Color3f::DARK_GRAY;
if (tracerName == RIG_FLOW_TOTAL_NAME) return cvf::Color3f::LIGHT_GRAY;
if (tracerName == RIG_RESERVOIR_TRACER_NAME) return cvf::Color3f::LIGHT_GRAY;
if (tracerName == RIG_TINY_TRACER_GROUP_NAME) return cvf::Color3f::DARK_GRAY;
return cvf::Color3f::LIGHT_GRAY;
}
//--------------------------------------------------------------------------------------------------