! . */
| 12231 | |
| 12232 | /*! . */ |
| 12233 | void gmt_get_plot_array (struct GMT_CTRL *GMT) { |
| 12234 | /* Allocate more space for plot arrays */ |
| 12235 | GMT->current.plot.n_alloc = (GMT->current.plot.n_alloc == 0) ? GMT_CHUNK : (GMT->current.plot.n_alloc << 1); |
| 12236 | GMT->current.plot.x = gmt_M_memory (GMT, GMT->current.plot.x, GMT->current.plot.n_alloc, double); |
| 12237 | GMT->current.plot.y = gmt_M_memory (GMT, GMT->current.plot.y, GMT->current.plot.n_alloc, double); |
| 12238 | GMT->current.plot.pen = gmt_M_memory (GMT, GMT->current.plot.pen, GMT->current.plot.n_alloc, unsigned int); |
| 12239 | } |
| 12240 | |
| 12241 | /*! . */ |
| 12242 | int gmt_get_format (struct GMT_CTRL *GMT, double interval, char *unit, char *prefix, char *format) { |
no outgoing calls
no test coverage detected