/*
* 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 "point.hpp"
#include "debug.hpp"
#include
using namespace std;
#if defined(COMPILER_GCC)
#pragma GCC optimize("-O3")
#endif
//-----------------------------------------------------------------------------
template
util::point::point ()
{ ; }
//-----------------------------------------------------------------------------
template
double
util::point::distance (const util::point &other) const {
return sqrt (distance2 (other));
}
template
double
util::point::distance2 (const util::point &other) const {
double total = 0.0;
for (size_t i = 0; i < S; ++i)
total += pow2 (this->data[i] - other.data[i]);
return total;
}
template
double
util::point::manhattan (const util::point &other) const {
double total = 0.0;
for (size_t i = 0; i < S; ++i)
total += fabs (this->data[i] - other.data[i]);
return total;
}
//-----------------------------------------------------------------------------
template
util::point&
util::point::operator*= (double f) {
for (double &i: this->data)
i *= f;
return *this;
}
template
util::point
util::point::operator* (double f) const {
util::point out;
for (size_t i = 0; i < S; ++i)
out.data[i] = this->data[i] * f;
return out;
}
//-----------------------------------------------------------------------------
template
util::point
util::point::operator- (const util::vector &rhs) const {
util::point out;
for (size_t i = 0; i < S; ++i)
out.data[i] = this->data[i] - rhs.data[i];
return out;
}
template
util::point&
util::point::operator-= (const util::vector &rhs) {
for (size_t i = 0; i < S; ++i)
this->data[i] -= rhs.data[i];
return *this;
}
//-----------------------------------------------------------------------------
template
util::point
util::point::operator+ (const util::vector &rhs) const {
util::point out;
for (size_t i = 0; i < S; ++i)
out.data[i] = this->data[i] + rhs.data[i];
return out;
}
template
util::point&
util::point::operator+= (const util::vector &rhs) {
for (size_t i = 0; i < S; ++i)
this->data[i] += rhs.data[i];
return *this;
}
//-----------------------------------------------------------------------------
template
util::point
util::point::operator- (const util::point &rhs) const {
util::point out;
for (size_t i = 0; i < S; ++i)
out.data[i] = this->data[i] - rhs.data[i];
return out;
}
//-----------------------------------------------------------------------------
template
util::vector
util::point::to (const util::point &rhs) const {
util::vector out;
for (size_t i = 0; i < S; ++i)
out.data[i] = rhs.data[i] - this->data[i];
return out;
}
//-----------------------------------------------------------------------------
template
void
util::point::sanity (void) const {
CHECK_SOFT (std::all_of (begin (this->data),
end (this->data),
[] (double i) { return !std::isnan (i); }));
}
//-----------------------------------------------------------------------------
template
util::point
util::operator* (const vector &v, const point &p) {
point out;
for (size_t i = 0; i < S; ++i)
out.data[i] = p.data[i] + v.data[i];
return out;
}
template util::point<1> util::operator* (const vector<1>&, const point<1>&);
template util::point<2> util::operator* (const vector<2>&, const point<2>&);
template util::point<3> util::operator* (const vector<3>&, const point<3>&);
template
util::point
util::operator* (const point &p, const vector &v)
{ return v * p; }
template util::point<1> util::operator* (const point<1>&, const vector<1>&);
template util::point<2> util::operator* (const point<2>&, const vector<2>&);
template util::point<3> util::operator* (const point<3>&, const vector<3>&);
//-----------------------------------------------------------------------------
template
std::ostream&
util::operator<< (std::ostream &os, const util::point &p) {
os << "point" << S << "(";
os << p.data[0];
for (size_t i = 1; i < S; ++i)
os << ", " << p.data[i];
os << ")";
return os;
}
template std::ostream& util::operator<< (std::ostream &os, const util::point<1>&);
template std::ostream& util::operator<< (std::ostream &os, const util::point<2>&);
template std::ostream& util::operator<< (std::ostream &os, const util::point<3>&);
template struct util::point<1>;
template struct util::point<2>;
template struct util::point<3>;