| 10851 | } |
| 10852 | |
| 10853 | struct GMT_POSTSCRIPT * gmt_get_postscript (struct GMT_CTRL *GMT) { |
| 10854 | struct GMT_POSTSCRIPT *P = NULL; |
| 10855 | P = gmt_M_memory (GMT, NULL, 1, struct GMT_POSTSCRIPT); |
| 10856 | P->hidden = gmt_M_memory (GMT, NULL, 1, struct GMT_POSTSCRIPT_HIDDEN); |
| 10857 | return (P); |
| 10858 | } |
| 10859 | |
| 10860 | void gmt_plot_grid_graticules (struct GMT_CTRL *GMT, struct GMT_GRID *G, struct GMT_GRID *I, struct GMT_PALETTE *P, struct GMT_PEN *pen, bool skip, double *intensity, bool grdview) { |
| 10861 | /* Lay down an image from a grid using polygons of the graticules. This is recoded from grdview |
no outgoing calls
no test coverage detected