| 1883 | } |
| 1884 | |
| 1885 | GMT_LOCAL void gmtplot_map_symbol_ew (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double lat, char *label, double west, double east, bool annot, unsigned int level, unsigned int form) { |
| 1886 | unsigned int i, nc; |
| 1887 | struct GMT_XINGS *xings = NULL; |
| 1888 | |
| 1889 | nc = gmtlib_map_latcross (GMT, lat, west, east, &xings); |
| 1890 | for (i = 0; i < nc; i++) |
| 1891 | //gmtplot_map_symbol (GMT, PSL, xings[i].xx, xings[i].yy, xings[i].sides, xings[i].angle, label, xings[i].nx, 1, annot, level, form); |
| 1892 | gmtplot_map_symbol (GMT, PSL, &(xings[i]), label, 1, annot, level, form); |
| 1893 | if (nc) gmt_M_free (GMT, xings); |
| 1894 | } |
| 1895 | |
| 1896 | GMT_LOCAL void gmtplot_map_symbol_ns (struct GMT_CTRL *GMT, struct PSL_CTRL *PSL, double lon, char *label, double south, double north, bool annot, unsigned int level, unsigned int form) { |
| 1897 | unsigned int i, k, nc; |
no test coverage detected