mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
show properties in topology view in netgen gui
This commit is contained in:
parent
70abacaf82
commit
bb7a3fe692
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user