void pgdp(
const Ppoint_list *point_list /* array of points */ Pint gdp_id /* gdp function identifier */ const Pgdp_data *data_rec /* data record */
)
typedef struct {
Pint num_points; /* number of Ppoint in the list */
Ppoint *points; /* list of points */
} Ppoint_list;
typedef union {
/* not implemented */
} Pgdp_data;
typedef struct {
Pfloat x; /* x coordinate */
Pfloat y; /* y coordinate */
} Ppoint;
Not implemented.