![]() |
LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
|
#include <lf/io/gmsh_file_v4.h>
Public Attributes | |
int | entity_dim = -1 |
Dimension of the (partitioned) entity to which the nodes in this block belong. | |
int | entity_tag = -1 |
The tag of the (partitioned) entity to which the nodes in this block belong. | |
bool | parametric = false |
Are the nodes in this block parametric? | |
std::vector< std::pair< std::size_t, Eigen::Vector3d > > | nodes |
a list of nodes in this block | |
Definition at line 267 of file gmsh_file_v4.h.
int lf::io::GMshFileV4::NodeBlock::entity_dim = -1 |
Dimension of the (partitioned) entity to which the nodes in this block belong.
Definition at line 272 of file gmsh_file_v4.h.
int lf::io::GMshFileV4::NodeBlock::entity_tag = -1 |
The tag of the (partitioned) entity to which the nodes in this block belong.
Definition at line 278 of file gmsh_file_v4.h.
std::vector<std::pair<std::size_t, Eigen::Vector3d> > lf::io::GMshFileV4::NodeBlock::nodes |
a list of nodes in this block
std::get<0>(nodes[i])
contains the tag of the i-th nodestd::get<1>(nodes[i])
contains the coordinates of the i-th nodeDefinition at line 294 of file gmsh_file_v4.h.
bool lf::io::GMshFileV4::NodeBlock::parametric = false |
Are the nodes in this block parametric?
Definition at line 283 of file gmsh_file_v4.h.