| 906 | } |
| 907 | |
| 908 | GMT_LOCAL void gmtplot_powy_grid (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n, double dval) { |
| 909 | unsigned int ny; |
| 910 | double *y = NULL; |
| 911 | |
| 912 | ny = gmtlib_pow_array (GMT, s, n, dval, 1, &y); |
| 913 | gmtplot_y_grid (GMT, PSL, w, e, y, ny); |
| 914 | if (y) gmt_M_free (GMT, y); |
| 915 | } |
| 916 | |
| 917 | GMT_LOCAL double gmtplot_shift_gridline (struct GMT_CTRL *GMT, double val, unsigned int type) { |
| 918 | /* Only for oblique projections: If any of the corners are exactly multiples of annotation |
no test coverage detected