[][src]Function gmsh_sys::gmshModelMeshAddNodes

pub unsafe extern "C" fn gmshModelMeshAddNodes(
    dim: c_int,
    tag: c_int,
    nodeTags: *mut usize,
    nodeTags_n: usize,
    coord: *mut f64,
    coord_n: usize,
    parametricCoord: *mut f64,
    parametricCoord_n: usize,
    ierr: *mut c_int
)

Add nodes classified on the model entity of dimension dim and tag tag. nodeTags contains the node tags (their unique, strictly positive identification numbers). coord is a vector of length 3 times the length of nodeTags that contains the x, y, z coordinates of the nodes, concatenated: [n1x, n1y, n1z, n2x, ...]. The optional parametricCoord vector contains the parametric coordinates of the nodes, if any. The length of parametricCoord can be 0 or dim times the length of nodeTags. If the nodeTags vector is empty, new tags are automatically assigned to the nodes.