| 1612 | } |
| 1613 | |
| 1614 | GMT_LOCAL void gmtplot_circle_map_boundary (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n) { |
| 1615 | gmt_M_unused(w); gmt_M_unused(e); gmt_M_unused(s); gmt_M_unused(n); |
| 1616 | if (GMT->common.R.oblique) { /* Draw rectangular boundary and return */ |
| 1617 | gmtplot_rect_map_boundary (GMT, PSL, 0.0, 0.0, GMT->current.proj.rect[XHI], GMT->current.proj.rect[YHI]); |
| 1618 | return; |
| 1619 | } |
| 1620 | |
| 1621 | gmt_setpen (GMT, &GMT->current.setting.map_frame_pen); |
| 1622 | |
| 1623 | PSL_plotarc (PSL, GMT->current.proj.r, GMT->current.proj.r, GMT->current.proj.r, 0.0, 360.0, PSL_MOVE|PSL_STROKE); |
| 1624 | } |
| 1625 | |
| 1626 | GMT_LOCAL void gmtplot_theta_r_map_boundary (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double w, double e, double s, double n) { |
| 1627 | bool circles = false; |
no test coverage detected