/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Copyright 2011-2015 Danny Robson */ #ifndef __UTIL_VECTOR_HPP #define __UTIL_VECTOR_HPP #include "json/tree.hpp" #include "coord.hpp" #include #include #include namespace util { template struct vector : public coord::base { using coord::base::base; // vector size bool is_zero (void) const; T magnitude (void) const; T magnitude2 (void) const; T difference (vector) const; T difference2 (vector) const; // normalisation bool is_normalised (void) const; vector& normalise (void); vector normalised [[gnu::warn_unused_result]] (void) const; // representations template vector homog (void) const; // constants static const vector UNIT; static const vector ZERO; void sanity (void) const; }; // polar/cartesian conversions; assumes (mag, angle) form. template vector<2,T> polar_to_cartesian (vector<2,T>); template vector<2,T> cartesian_to_polar (vector<2,T>); template vector<3,T> cross (vector<3,T>, vector<3,T>); template vector<3,T> spherical_to_cartesian (vector<3,T>); template vector<3,T> cartesian_to_spherical (vector<3,T>); template vector<2,T> to_euler (vector<3,T>); template vector<3,T> from_euler (vector<2,T>); // output and serialisation operators template std::ostream& operator<< (std::ostream&, vector); template const json::tree::node& operator>> (const json::tree::node&, vector&); // convenience typedefs template using vector2 = vector<2,T>; template using vector3 = vector<3,T>; template using vector4 = vector<4,T>; typedef vector2 vector2u; typedef vector3 vector3u; typedef vector2 vector2i; typedef vector3 vector3i; typedef vector2 vector2f; typedef vector3 vector3f; typedef vector4 vector4f; typedef vector2 vector2d; typedef vector3 vector3d; typedef vector3 vector4d; } #include "vector.ipp" #endif