* @brief Returns the normalized vector for a cartesian vector with 3 coords * * @param vector * @return af::array */
| 141 | * @return af::array |
| 142 | */ |
| 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; |
no test coverage detected