mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-13 22:50:33 +05:00
Added material name for 0D elements
This commit is contained in:
parent
7934a34872
commit
8665dea15e
@ -64,6 +64,13 @@ NGX_INLINE DLL_HEADER Ng_Element Ngx_Mesh :: GetElement<0> (size_t nr) const
|
|||||||
ret.facets.base = 1;
|
ret.facets.base = 1;
|
||||||
ret.facets.ptr = (int*)&el.pnum;
|
ret.facets.ptr = (int*)&el.pnum;
|
||||||
|
|
||||||
|
if (mesh->GetDimension() == 1)
|
||||||
|
ret.mat = mesh->GetBCNamePtr(el.index-1);
|
||||||
|
else if (mesh->GetDimension() == 2)
|
||||||
|
ret.mat = mesh->GetCD2NamePtr(el.index-1);
|
||||||
|
else
|
||||||
|
ret.mat = mesh->GetCD3NamePtr(el.index-1);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user