[−][src]Function gmsh_sys::gmshModelMeshGetElementProperties
pub unsafe extern "C" fn gmshModelMeshGetElementProperties(
elementType: c_int,
elementName: *mut *mut c_char,
dim: *mut c_int,
order: *mut c_int,
numNodes: *mut c_int,
nodeCoord: *mut *mut f64,
nodeCoord_n: *mut usize,
ierr: *mut c_int
)
Get the properties of an element of type elementType
: its name
(elementName
), dimension (dim
), order (order
), number of nodes
(numNodes
) and coordinates of the nodes in the reference element
(nodeCoord
vector, of length dim
times numNodes
).