| 143 | af::array normalize3(const af::array& vector) { return vector / norm3(vector); } |
| 144 | |
| 145 | af::exception make_error(const char* string) { |
| 146 | std::cout << string << std::endl; |
| 147 | return af::exception(string); |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * @brief Transforms degrees to radians |
no outgoing calls
no test coverage detected