| 59 | } |
| 60 | |
| 61 | af_err af_grid(const af_window wind, const int rows, const int cols) { |
| 62 | try { |
| 63 | if (wind == 0) { AF_ERROR("Not a valid window", AF_ERR_INTERNAL); } |
| 64 | forgeManager().setWindowChartGrid(wind, rows, cols); |
| 65 | } |
| 66 | CATCHALL; |
| 67 | return AF_SUCCESS; |
| 68 | } |
| 69 | |
| 70 | af_err af_set_axes_limits_compute(const af_window window, const af_array x, |
| 71 | const af_array y, const af_array z, |
no test coverage detected