| 14 | namespace af { |
| 15 | |
| 16 | array transformCoordinates(const array& tf, const float d0, const float d1) { |
| 17 | af_array out = 0; |
| 18 | AF_THROW(af_transform_coordinates(&out, tf.get(), d0, d1)); |
| 19 | return array(out); |
| 20 | } |
| 21 | |
| 22 | } // namespace af |
no test coverage detected