LifeV
|
Functions | |
std::pair< BareEdge, bool > | makeBareEdge (ID const i, ID const j) |
It creates a BareEdge end returns the orientation of the created edge with respect to the given data. More... | |
BareEdge | setBareEdge (ID const i, ID const j) |
It creates a BareEdge, ignoring orientation. More... | |
BareEdge | setBareEdgeNo (ID const i, ID const j) |
It creates a non-standard BareEdge. More... | |
std::pair< BareFace, bool > | makeBareFace (ID const i, ID const j, ID const k) |
It creates Bare Face objects from three Point ID's. More... | |
std::pair< BareFace, bool > | makeBareFace (ID const i, ID const j, ID const k, ID const l) |
It creates Bare Face objects from four Point ID's. To be used with Quad faces. More... | |
It creates a BareEdge end returns the orientation of the created edge with respect to the given data.
The BareEdge that will be built is the one passing by i
and j
. The orientation is i->j if the returned parameter is a true.
Definition at line 254 of file MeshElementBare.hpp.
It creates a BareEdge, ignoring orientation.
The BareEdge that will be built is the one passing by i
and j
A lighter version of MakeBareEdge, to be used if orientation flag is not needed;
Definition at line 280 of file MeshElementBare.hpp.
It creates a non-standard BareEdge.
Yet another lighter version of MakeBareEdge, without orientation, To be used for non-oriented graphs.
Definition at line 304 of file MeshElementBare.hpp.
It creates Bare Face objects from three Point ID's.
To be used for triangular faces.
Definition at line 125 of file MeshElementBare.cpp.
It creates Bare Face objects from four Point ID's. To be used with Quad faces.
Definition at line 164 of file MeshElementBare.cpp.