/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * Copyright 2011 Danny Robson */ #include "vector.hpp" #include "debug.hpp" #include using util::vector; using util::vector3f; using util::vector3d; /////////////////////////////////////////////////////////////////////////////// template vector<2,T> util::polar_to_cartesian (vector<2,T> v) { return util::vector<2,T> { v[0] * std::cos (v[1]), v[0] * std::sin (v[1]) }; } //----------------------------------------------------------------------------- template vector<2,T> util::cartesian_to_polar (vector<2,T> v) { return util::vector<2,T> { std::hypot (v.x, v.y), std::atan2 (v.y, v.x) }; } /////////////////////////////////////////////////////////////////////////////// template vector<3,T> util::from_euler (vector<2,T> euler) { return normalised (util::vector<3,T> { std::sin (euler.x) * std::cos (euler.y), std::cos (euler.x), -std::sin (euler.x) * std::sin (euler.y), }); } template util::vector3f util::from_euler (util::vector2f); template util::vector3d util::from_euler (util::vector2d); //----------------------------------------------------------------------------- template vector<2,T> util::to_euler (vector<3,T> vec) { CHECK (is_normalised (vec)); return { std::acos (vec.y), -std::atan2 (vec.z, vec.x), }; } template util::vector2f util::to_euler (util::vector3f); template util::vector2d util::to_euler (util::vector3d); /////////////////////////////////////////////////////////////////////////////// template struct util::debug::validator> { static bool is_valid (vector const& val) { return std::all_of ( std::begin (val.data), std::end (val.data), [] (auto v) { return !std::isnan (v); } ); } }; /////////////////////////////////////////////////////////////////////////////// #define INSTANTIATE_S_T(S,T) \ template struct util::vector; \ template struct util::debug::validator>; #define INSTANTIATE(T) \ INSTANTIATE_S_T(1,T) \ INSTANTIATE_S_T(2,T) \ INSTANTIATE_S_T(3,T) \ INSTANTIATE_S_T(4,T) INSTANTIATE(uint32_t) INSTANTIATE(int32_t) INSTANTIATE(uint64_t) INSTANTIATE(int64_t) INSTANTIATE(float) INSTANTIATE(double) //----------------------------------------------------------------------------- template vector<2,float> util::polar_to_cartesian (util::vector<2,float>); template vector<2,float> util::cartesian_to_polar (util::vector<2,float>);