mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-26 05:50:32 +05:00
Added material name for 0D elements
This commit is contained in:
parent
7934a34872
commit
8665dea15e
@ -63,6 +63,13 @@ NGX_INLINE DLL_HEADER Ng_Element Ngx_Mesh :: GetElement<0> (size_t nr) const
|
||||
ret.facets.num = 1;
|
||||
ret.facets.base = 1;
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user