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

Function gmtplot_logx_grid

src/gmt_plot.c:881–888  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

879}
880
881GMT_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
890GMT_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;

Callers 1

gmtplot_map_gridlinesFunction · 0.85

Calls 2

gmtlib_log_arrayFunction · 0.85
gmtplot_x_gridFunction · 0.85

Tested by

no test coverage detected