| 14 | namespace af { |
| 15 | |
| 16 | array rotate(const array& in, const float theta, const bool crop, |
| 17 | const interpType method) { |
| 18 | af_array out = 0; |
| 19 | AF_THROW(af_rotate(&out, in.get(), theta, crop, method)); |
| 20 | return array(out); |
| 21 | } |
| 22 | |
| 23 | } // namespace af |