| 30 | |
| 31 | template<typename T> |
| 32 | static inline af_array rotate(const af_array in, const float theta, |
| 33 | const af::dim4 &odims, |
| 34 | const af_interp_type method) { |
| 35 | return getHandle(rotate<T>(castArray<T>(in), theta, odims, method)); |
| 36 | } |
| 37 | |
| 38 | af_err af_rotate(af_array *out, const af_array in, const float theta, |
| 39 | const bool crop, const af_interp_type method) { |
no test coverage detected