PK_MVERTEX_cb_f_t   

typedef void             (*PK_MVERTEX_cb_f_t)
(
--- received arguments ---
const PK_MVERTEX_t         mvertex,   --- mvertex
void                      *data,      --- external data
--- returned arguments ---
PK_MESH_cb_status_t *const status     --- callback status
);


This is a type of a callback function which the application may pass to a
PK function that will apply it to mvertices.

Used in:

PK_MESH_do_for_all_mvertices


The void *data argument is used to communicate between the application and its
supplied callback function.