show properties in topology view in netgen gui

This commit is contained in:
Christopher Lackner 2024-03-05 14:38:25 +01:00
parent 70abacaf82
commit bb7a3fe692

View File

@ -1843,6 +1843,16 @@ namespace netgen
}
str << "{" << shapename[l] << " " << count2;
if(HaveProperties(e.Current()))
{
const auto& props = GetProperties(e.Current());
if(props.name || props.maxh < 1e99)
str << " - ";
if(props.name)
str << props.GetName();
if(props.maxh < 1e99)
str << " maxh(" << props.maxh << ")";
}
if (l <= TopAbs_EDGE)
{