Classes | |
struct | Side |
Public Types | |
typedef std::vector< Side >::iterator | iterator |
typedef std::vector< Side >::const_iterator | const_iterator |
Public Member Functions | |
const_iterator | begin () const |
const_iterator | end () const |
void | clear () |
bool | empty () const |
AdjSides () | |
size_t | num_skin () const |
void | insert (const EntityHandle *handles, int skip_idx, EntityHandle adj_elem, unsigned short elem_side) |
insert side, specifying side connectivity More... | |
void | insert (const EntityHandle *handles, int skip_idx, EntityHandle adj_elem, unsigned short elem_side, const short *indices) |
insert side, specifying list of indices into parent element connectivity. More... | |
bool | find_and_unmark (const EntityHandle *other, int skip_index, EntityHandle &elem_out) |
Search list for a given side, and if found, mark as not skin. More... | |
Private Attributes | |
std::vector< Side > | data |
List of sides. More... | |
size_t | skin_count |
Cached count of sides that are skin. More... | |
Definition at line 1144 of file Skinner.cpp.
typedef std::vector< Side >::const_iterator moab::AdjSides< CORNERS >::const_iterator |
Definition at line 1252 of file Skinner.cpp.
typedef std::vector< Side >::iterator moab::AdjSides< CORNERS >::iterator |
Definition at line 1251 of file Skinner.cpp.
|
inline |
Definition at line 1272 of file Skinner.cpp.
|
inline |
Definition at line 1253 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::data.
Referenced by moab::Skinner::find_skin_vertices_2D(), and moab::Skinner::find_skin_vertices_3D().
|
inline |
Definition at line 1262 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::data, and moab::AdjSides< CORNERS >::skin_count.
Referenced by moab::Skinner::find_skin_vertices_2D(), and moab::Skinner::find_skin_vertices_3D().
|
inline |
Definition at line 1267 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::data.
|
inline |
Definition at line 1257 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::data.
Referenced by moab::Skinner::find_skin_vertices_2D(), and moab::Skinner::find_skin_vertices_3D().
|
inline |
Search list for a given side, and if found, mark as not skin.
other | Connectivity of side |
skip_index | Index in 'other' at which implicit vertex occurs. |
elem_out | If return value is true, the element that the side is a side of. If return value is false, not set. |
Given the connectivity of some existing element, check if it occurs in the list. If it does, clear the "is skin" state of the side so that we know that we don't need to later create the side element.
Definition at line 1355 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::data, and moab::AdjSides< CORNERS >::skin_count.
Referenced by moab::Skinner::find_skin_vertices_2D(), and moab::Skinner::find_skin_vertices_3D().
|
inline |
insert side, specifying side connectivity
Either insert a new side, or if the side is already in the list, mark it as not on the skin.
handles | The connectivity of the element side. |
skip_idx | The index of the implicit vertex (contained in all sides in the list.) |
adj_elem | The element that this is a side of. |
elem_side | Which side of adj_elem are we storing (CN side number.) |
Definition at line 1291 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::data, and moab::AdjSides< CORNERS >::skin_count.
Referenced by moab::Skinner::find_skin_vertices_2D(), and moab::Skinner::find_skin_vertices_3D().
|
inline |
insert side, specifying list of indices into parent element connectivity.
Either insert a new side, or if the side is already in the list, mark it as not on the skin.
handles | The connectivity of the parent element |
skip_idx | The index of the implicit vertex (contained in all sides in the list.) This is an index into 'indices', not 'handles'. |
adj_elem | The element that this is a side of (parent handle). |
indices | The indices into 'handles' at which the vertices representing the side occur. |
elem_side | Which side of adj_elem are we storing (CN side number.) |
Definition at line 1323 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::data, and moab::AdjSides< CORNERS >::skin_count.
|
inline |
Definition at line 1274 of file Skinner.cpp.
References moab::AdjSides< CORNERS >::skin_count.
Referenced by moab::Skinner::find_skin_vertices_2D(), and moab::Skinner::find_skin_vertices_3D().
|
private |
List of sides.
Definition at line 1247 of file Skinner.cpp.
Referenced by moab::AdjSides< CORNERS >::begin(), moab::AdjSides< CORNERS >::clear(), moab::AdjSides< CORNERS >::empty(), moab::AdjSides< CORNERS >::end(), moab::AdjSides< CORNERS >::find_and_unmark(), and moab::AdjSides< CORNERS >::insert().
|
private |
Cached count of sides that are skin.
Definition at line 1248 of file Skinner.cpp.
Referenced by moab::AdjSides< CORNERS >::clear(), moab::AdjSides< CORNERS >::find_and_unmark(), moab::AdjSides< CORNERS >::insert(), and moab::AdjSides< CORNERS >::num_skin().