/* * This file is part of libgim. * * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with libgim. If not, see . * * Copyright 2011 Danny Robson */ #include "vector.hpp" #include "debug.hpp" #include "maths.hpp" #include "random.hpp" #include #include #include #include using namespace util; using std::begin; using std::end; template util::vector::vector () { ; } template util::vector util::vector::operator* (double rhs) const { util::vector out; for (size_t i = 0; i < S; ++i) out.data[i] = this->data[i] * rhs; return out; } template util::vector& util::vector::operator*= (double rhs) { for (double &i: this->data) i *= rhs; return *this; } template util::vector util::vector::operator* (const util::vector &rhs) const { util::vector out; for (size_t i = 0; i < S; ++i) out.data[i] = this->data[i] * rhs.data[i]; return out; } template util::vector& util::vector::operator*= (const util::vector &rhs) { for (size_t i = 0; i < S; ++i) this->data[i] *= rhs.data[i]; return *this; } template util::vector util::vector::operator/ (double rhs) const { util::vector out; for (size_t i = 0; i < S; ++i) out.data[i] = this->data[i] / rhs; return out; } template util::vector& util::vector::operator/= (double rhs) { for (size_t i = 0; i < S; ++i) this->data[i] /= rhs; return *this; } template util::vector util::vector::operator+ (const util::vector &rhs) const { util::vector out; for (size_t i = 0; i < S; ++i) out.data[i] = this->data[i] + rhs.data[i]; return out; } template util::vector util::vector::operator- (void) const { util::vector out; for (size_t i = 0; i < S; ++i) out.data[i] = -this->data[i]; return out; } template util::vector util::vector::operator- (const util::vector &rhs) const { util::vector out; for (size_t i = 0; i < S; ++i) out.data[i] = this->data[i] - rhs.data[i]; return out; } template util::vector& util::vector::operator-= (const util::vector &rhs) { for (size_t i = 0; i < S; ++i) this->data[i] -= rhs.data[i]; return *this; } template util::vector util::vector::operator- (double rhs) const { util::vector out; for (size_t i = 0; i < S; ++i) out.data[i] = this->data[i] - rhs; return out; } template util::vector& util::vector::operator-= (double rhs) { for (size_t i = 0; i < S; ++i) this->data[i] -= rhs; return *this; } template util::vector& util::vector::operator+= (const util::vector &rhs) { for (size_t i = 0; i < S; ++i) this->data[i] += rhs.data[i]; return *this; } template util::vector& util::vector::operator+= (double rhs) { for (size_t i = 0; i < S; ++i) this->data[i] += rhs; return *this; } template util::vector& util::vector::operator= (const util::vector &rhs) { std::copy (begin (rhs.data), end (rhs.data), begin (this->data)); return *this; } template bool util::vector::operator== (const util::vector &rhs) const { for (size_t i = 0; i < S; ++i) if (!almost_equal (this->data[i], rhs.data[i])) return false; return true; } template double util::vector::magnitude (void) const { return sqrt (magnitude2 ()); } template double util::vector::magnitude2 (void) const { double total = 0.0; for (size_t i = 0; i < S; ++i) total += pow2 (this->data[i]); return total; } template double util::vector::dot (const util::vector &rhs) const { double total = 0.0; for (size_t i = 0; i < S; ++i) total += this->data[i] * rhs.data[i]; return total; } template util::vector& util::vector::normalise (void) { double mag = magnitude (); for (size_t i = 0; i < S; ++i) this->data[i] /= mag; return *this; } template util::vector util::vector::normalised (void) const { double mag = magnitude (); util::vector out; for (size_t i = 0; i < S; ++i) out.data[i] = this->data[i] / mag; return out; } util::vector<3> util::spherical_to_cartesian (const util::vector<3> &s) { return { s.x * sin (s.y) * cos (s.z), s.x * sin (s.y) * sin (s.z), s.x * cos (s.y), }; } util::vector<3> util::cartesian_to_spherical (const util::vector<3> &c) { double mag = c.magnitude (); return { mag, acos (c.z / mag), atan2 (c.y, c.x) }; } template bool util::vector::is_zero (void) const { return std::all_of (begin (this->data), end (this->data), [] (double i) { return almost_zero (i); }); } template void util::vector::sanity (void) const { CHECK_SOFT (std::all_of (begin (this->data), end (this->data), [] (double i) { return !std::isnan (i); })); } util::vector<3> util::cross (const util::vector<3> &a, const util::vector<3> &b) { return { a.y * b.z - a.z * b.y, a.z * b.x - a.x * b.z, a.x * b.y - a.y * b.x }; } template util::vector util::operator* (double a, const util::vector &b) { return b * a; } template util::vector<1> util::operator* (double, const util::vector<1>&); template util::vector<2> util::operator* (double, const util::vector<2>&); template util::vector<3> util::operator* (double, const util::vector<3>&); template std::ostream& util::operator<< (std::ostream &os, const util::vector &v) { os << "vec" << S << "(" << v.data[0]; for (double i: v.data) os << ", " << i; os << ")"; return os; } template std::ostream& util::operator<< (std::ostream&, const util::vector<1> &v); template std::ostream& util::operator<< (std::ostream&, const util::vector<2> &v); template std::ostream& util::operator<< (std::ostream&, const util::vector<3> &v); template const json::node& util::operator>> (const json::node &node, util::vector &v) { const json::array &array = node.as_array (); if (array.size () != S) throw std::runtime_error ("Invalid dimensionality for json-to-vector"); std::transform (begin (array), end (array), begin (v.data), [] (const json::node &n) { return n.as_number ().native (); }); return node; } template const json::node& util::operator>> (const json::node&, util::vector<1>&); template const json::node& util::operator>> (const json::node&, util::vector<2>&); template const json::node& util::operator>> (const json::node&, util::vector<3>&); template struct util::vector<1>; template struct util::vector<2>; template struct util::vector<3>; namespace util { template <> vector<1> random (void) { util::vector<1> out; randomise (out.data); return out; } template <> vector<2> random (void) { util::vector<2> out; randomise (out.data); return out; } template <> vector<3> random (void) { util::vector<3> out; randomise (out.data); return out; } }