| 879 | } |
| 880 | |
| 881 | GMT_LOCAL void gmtplot_logx_grid (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n, double dval) { |
| 882 | unsigned int nx; |
| 883 | double *x = NULL; |
| 884 | |
| 885 | nx = gmtlib_log_array (GMT, w, e, dval, &x); |
| 886 | gmtplot_x_grid (GMT, PSL, s, n, x, nx); |
| 887 | if (x) gmt_M_free (GMT, x); |
| 888 | } |
| 889 | |
| 890 | GMT_LOCAL void gmtplot_logy_grid (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n, double dval) { |
| 891 | unsigned int ny; |
no test coverage detected