$extrastylesheet
Functions | |
| const Elem & | get (const ElemType Type) |
This namespace implements singleton reference elements for each fundamental element type supported by libMesh.
| const Elem & libMesh::ReferenceElem::get | ( | const ElemType | Type | ) |
Definition at line 240 of file reference_elem.C.
References libMesh::INVALID_ELEM, and libMesh::libmesh_assert().
Referenced by libMesh::Elem::reference_elem().
{
libmesh_assert_less (Type, INVALID_ELEM);
init_ref_elem_table();
libmesh_assert (ref_elem_map[Type] != NULL);
return *ref_elem_map[Type];
}