| 1577 | } |
| 1578 | |
| 1579 | GMT_LOCAL void gmtplot_basic_map_boundary (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n) { |
| 1580 | if (GMT->common.R.oblique) { /* Draw rectangular boundary and return */ |
| 1581 | gmtplot_rect_map_boundary (GMT, PSL, 0.0, 0.0, GMT->current.proj.rect[XHI], GMT->current.proj.rect[YHI]); |
| 1582 | return; |
| 1583 | } |
| 1584 | gmtplot_wesn_map_boundary (GMT, PSL, w, e, s, n); |
| 1585 | } |
| 1586 | |
| 1587 | /* |
| 1588 | * GENERIC MAP PLOTTING FUNCTIONS |
no test coverage detected