Go to the source code of this file.
◆ IsotropicRefinementChoice
Enum of different choices for istropic refinement. There are 3 different ways to refine a tetrahedral, here we save the different possibilities. It is different to RefinementPossibilities are these are options in the case that an isotropic refinement is conducted.
Enumerator |
---|
isotropic_refinement | Decide where to perform a cut based on the shortest edge length.
|
cut_tet_68 | Perform a cut in the along the edge (6,8).
|
cut_tet_57 | Perform a cut in the along the edge (5,7).
|
cut_tet_49 | Perform a cut in the along the edge (4,9).
|
Definition at line 74 of file reference_cell.h.
◆ operator<<()
std::ostream & operator<< |
( |
std::ostream & |
out, |
|
|
const ReferenceCell & |
reference_cell |
|
) |
| |
Output operator that writes the reference_cell
object to the stream in a text format in which the object is represented by an integer. The details of which integer value represents each kind of reference cell is unimportant and consequently not specified. If you want a string representation of what a ReferenceCell is, use ReferenceCell::to_string().
Definition at line 1131 of file reference_cell.cc.
◆ operator>>()
std::istream & operator>> |
( |
std::istream & |
in, |
|
|
ReferenceCell & |
reference_cell |
|
) |
| |
Input operator that reads the reference_cell
object from the stream in a text format in which the object is represented by an integer. Which specific integer value represents which reference cell is unspecified, but the function uses the same translation as the corresponding output operator<<
.
Definition at line 1145 of file reference_cell.cc.