MCPcopy Create free account
hub / github.com/GenericMappingTools/gmt / gmtplot_powx_grid

Function gmtplot_powx_grid

src/gmt_plot.c:899–906  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

897}
898
899GMT_LOCAL void gmtplot_powx_grid (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n, double dval) {
900 unsigned int nx;
901 double *x = NULL;
902
903 nx = gmtlib_pow_array (GMT, w, e, dval, 0, &x);
904 gmtplot_x_grid (GMT, PSL, s, n, x, nx);
905 if (x) gmt_M_free (GMT, x);
906}
907
908GMT_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;

Callers 1

gmtplot_map_gridlinesFunction · 0.85

Calls 2

gmtlib_pow_arrayFunction · 0.85
gmtplot_x_gridFunction · 0.85

Tested by

no test coverage detected