| 6447 | } |
| 6448 | |
| 6449 | GMT_LOCAL void gmtplot_map_tick_marks (struct GMT_CTRL *GMT) { |
| 6450 | double w, e, s, n; |
| 6451 | struct PSL_CTRL *PSL= GMT->PSL; |
| 6452 | |
| 6453 | if (GMT->current.map.frame.order == GMT_BASEMAP_BEFORE && GMT->current.map.frame.basemap_flag & GMT_BASEMAP_ANNOT_AFTER) return; /* Wrong order */ |
| 6454 | if (GMT->current.map.frame.order == GMT_BASEMAP_AFTER && !(GMT->current.map.frame.basemap_flag & GMT_BASEMAP_ANNOT_AFTER)) return; /* Wrong order */ |
| 6455 | |
| 6456 | w = GMT->common.R.wesn[XLO], e = GMT->common.R.wesn[XHI], s = GMT->common.R.wesn[YLO], n = GMT->common.R.wesn[YHI]; |
| 6457 | |
| 6458 | gmtplot_map_tickmarks (GMT, PSL, w, e, s, n); |
| 6459 | } |
| 6460 | |
| 6461 | GMT_LOCAL void gmtplot_map_annotations (struct GMT_CTRL *GMT) { |
| 6462 | double w, e, s, n; |
no test coverage detected