| 73 | } |
| 74 | |
| 75 | af_err af_transform_coordinates(af_array *out, const af_array tf, |
| 76 | const float d0, const float d1) { |
| 77 | CHECK_ARRAYS(tf); |
| 78 | CALL(af_transform_coordinates, out, tf, d0, d1); |
| 79 | } |
| 80 | |
| 81 | af_err af_rotate(af_array *out, const af_array in, const float theta, |
| 82 | const bool crop, const af_interp_type method) { |
no outgoing calls
no test coverage detected