int ex_put_n_coord (int   exoid,
                    int64_t start_node_num,
                    int64_t num_nodes,
		    const void *x_coor,
		    const void *y_coor,
		    const void *z_coor)
{
  return ex_put_partial_coord(exoid, start_node_num, num_nodes, x_coor, y_coor, z_coor);
}
Beispiel #2
0
int ne_put_n_coord(int     neid,           /* NetCDF/Exodus file ID */
                   int64_t start_node_num, /* Starting position to write to */
                   int64_t num_nodes,      /* Number of coords to write */
                   void *  x_coor,         /* Vector of X coordinates */
                   void *  y_coor,         /* Vector of Y coordinates */
                   void *  z_coor          /* Vector of Z coordinates */
                   )
{
  return ex_put_partial_coord(neid, start_node_num, num_nodes, x_coor, y_coor, z_coor);
}