Public Member Functions | |
bool | skin () const |
Side (const EntityHandle *array, int idx, EntityHandle adj, unsigned short) | |
Side (const EntityHandle *array, int idx, EntityHandle adj, unsigned short, const short *indices) | |
bool | operator== (const Side &other) const |
Side (const EntityHandle *array, int idx, EntityHandle adj, unsigned short) | |
Side (const EntityHandle *array, int idx, EntityHandle adj, unsigned short, const short *indices) | |
bool | operator== (const Side &other) const |
Public Attributes | |
EntityHandle | handles [CORNERS - 1] |
side vertices, except for implicit one More... | |
EntityHandle | adj_elem |
element that this is a side of, or zero More... | |
This struct is used to for a reduced representation of element "sides" adjacent to a give vertex. As such, it a) does not store the initial vertex that all sides are adjacent to b) orders the remaining vertices in a specific way for fast comparison.
For edge elements, only the opposite vertex is stored. For triangle elements, only the other two vertices are stored, and they are stored with the smaller of those two handles first. For quad elements, only the other three vertices are stored. They are stored such that the vertex opposite the implicit (not stored) vertex is always in slot 1. The other two vertices (in slots 0 and 2) are ordered such that the handle of the one in slot 0 is smaller than the handle in slot 2.
For each side, the adj_elem field is used to store the element that it is a side of as long as the element is considered to be on the skin. The adj_elem field is cleared (set to zero) to indicate that this side is no longer considered to be on the skin (and is the side of more than one element.)
Definition at line 1168 of file Skinner.cpp.
|
inline |
construct from connectivity of side
array | The connectivity of the element side. |
idx | The index of the implicit vertex (contained in all sides in the list.) |
adj | The element that this is a side of. |
Definition at line 1183 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::Side::handles.
|
inline |
construct from connectivity of parent element
array | The connectivity of the parent element |
idx | The index of the implicit vertex (contained in all sides in the list.) This is an index into 'indices', not 'array'. |
adj | The element that this is a side of. |
indices | The indices into 'array' at which the vertices representing the side occur. |
Definition at line 1210 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::Side::handles.
moab::AdjSides::Side< 4 >::Side | ( | const EntityHandle * | array, |
int | idx, | ||
EntityHandle | adj, | ||
unsigned short | |||
) |
construct from connectivity of side
array | The connectivity of the element side. |
idx | The index of the implicit vertex (contained in all sides in the list.) |
adj | The element that this is a side of. |
Definition at line 1378 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::Side::handles.
moab::AdjSides::Side< 4 >::Side | ( | const EntityHandle * | array, |
int | idx, | ||
EntityHandle | adj, | ||
unsigned short | , | ||
const short * | indices | ||
) |
construct from connectivity of parent element
array | The connectivity of the parent element |
idx | The index of the implicit vertex (contained in all sides in the list.) This is an index into 'indices', not 'array'. |
adj | The element that this is a side of. |
indices | The indices into 'array' at which the vertices representing the side occur. |
Definition at line 1397 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::Side::handles.
|
inline |
bool moab::AdjSides::Side< 4 >::operator== | ( | const Side & | other | ) | const |
Definition at line 1410 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::Side::handles.
|
inline |
Definition at line 1172 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::Side::adj_elem.
EntityHandle moab::AdjSides< CORNERS >::Side::adj_elem |
element that this is a side of, or zero
Definition at line 1171 of file Skinner.cpp.
Referenced by moab::AdjSides< CORNERS >::Side::skin().
EntityHandle moab::AdjSides< CORNERS >::Side::handles[CORNERS - 1] |
side vertices, except for implicit one
Definition at line 1170 of file Skinner.cpp.
Referenced by moab::AdjSides< CORNERS >::Side::operator==(), and moab::AdjSides< CORNERS >::Side::Side().