| 861 | } |
| 862 | |
| 863 | void gmt_plot_timex_grid (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n, unsigned int item) { |
| 864 | unsigned int nx; |
| 865 | double *x = NULL; |
| 866 | |
| 867 | nx = gmtlib_time_array (GMT, w, e, &GMT->current.map.frame.axis[GMT_X].item[item], &x); |
| 868 | gmtplot_x_grid (GMT, PSL, s, n, x, nx); |
| 869 | if (x) gmt_M_free (GMT, x); |
| 870 | } |
| 871 | |
| 872 | GMT_LOCAL void gmtplot_timey_grid (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n, unsigned int item) { |
| 873 | unsigned int ny; |
no test coverage detected