2011-06-23 22:04:51 +10:00
|
|
|
/*
|
|
|
|
* 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.
|
2012-05-30 20:20:19 +10:00
|
|
|
*
|
2011-06-23 22:04:51 +10:00
|
|
|
* 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.
|
2012-05-30 20:20:19 +10:00
|
|
|
*
|
2011-06-23 22:04:51 +10:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "point.hpp"
|
|
|
|
|
2011-10-18 21:45:55 +11:00
|
|
|
#include "debug.hpp"
|
2014-12-15 20:10:56 +11:00
|
|
|
#include "maths.hpp"
|
2011-10-18 21:45:55 +11:00
|
|
|
|
2011-06-23 22:04:51 +10:00
|
|
|
#include <cmath>
|
2014-12-15 20:10:56 +11:00
|
|
|
#include <cstdlib>
|
2011-06-23 22:04:51 +10:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2012-06-13 15:50:17 +10:00
|
|
|
#if defined(COMPILER_GCC)
|
|
|
|
#pragma GCC optimize("-O3")
|
|
|
|
#endif
|
2011-06-23 22:04:51 +10:00
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>::point ()
|
2012-05-18 17:56:24 +10:00
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>&
|
|
|
|
util::point<S,T>::operator*= (T f) {
|
|
|
|
for (auto &i: this->data)
|
2012-05-18 17:56:24 +10:00
|
|
|
i *= f;
|
2011-10-18 21:45:55 +11:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>
|
|
|
|
util::point<S,T>::operator* (T f) const {
|
|
|
|
util::point<S,T> out;
|
2012-05-18 17:56:24 +10:00
|
|
|
|
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
out.data[i] = this->data[i] * f;
|
|
|
|
return out;
|
2011-10-18 21:45:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-06 14:31:46 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>
|
|
|
|
util::point<S,T>::operator- (const vector<S,T> &rhs) const {
|
|
|
|
util::point<S,T> out;
|
2013-08-06 14:31:46 +10:00
|
|
|
|
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
out.data[i] = this->data[i] - rhs.data[i];
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>&
|
|
|
|
util::point<S,T>::operator-= (const util::vector<S,T> &rhs) {
|
2013-08-06 14:31:46 +10:00
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
this->data[i] -= rhs.data[i];
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>
|
|
|
|
util::point<S,T>::operator+ (const vector<S,T> &rhs) const {
|
|
|
|
util::point<S,T> out;
|
2011-10-18 21:45:55 +11:00
|
|
|
|
2012-05-18 17:56:24 +10:00
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
out.data[i] = this->data[i] + rhs.data[i];
|
|
|
|
return out;
|
|
|
|
}
|
2011-10-18 21:45:55 +11:00
|
|
|
|
2011-09-07 21:51:13 +10:00
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>&
|
|
|
|
util::point<S,T>::operator+= (const util::vector<S,T> &rhs) {
|
2012-05-18 17:56:24 +10:00
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
this->data[i] += rhs.data[i];
|
2011-09-07 21:51:13 +10:00
|
|
|
return *this;
|
|
|
|
}
|
2011-09-13 15:12:30 +10:00
|
|
|
|
|
|
|
|
2013-08-06 14:31:46 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>
|
|
|
|
util::point<S,T>::operator- (const point<S,T> &rhs) const {
|
|
|
|
util::point<S,T> out;
|
2012-05-18 17:56:24 +10:00
|
|
|
|
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
out.data[i] = this->data[i] - rhs.data[i];
|
|
|
|
return out;
|
2011-10-18 21:45:55 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::vector<S,T>
|
|
|
|
util::point<S,T>::to (const point<S,T> &rhs) const {
|
|
|
|
util::vector<S,T> out;
|
2012-05-18 17:56:24 +10:00
|
|
|
|
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
out.data[i] = rhs.data[i] - this->data[i];
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-19 14:59:50 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <size_t S, typename T>
|
|
|
|
bool
|
|
|
|
util::point<S,T>::operator== (const util::point<S,T> &rhs) const
|
|
|
|
{
|
|
|
|
return std::equal (std::begin (this->data),
|
|
|
|
std::end (this->data),
|
|
|
|
std::begin (rhs.data));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
2011-10-18 21:45:55 +11:00
|
|
|
void
|
2014-12-15 20:10:56 +11:00
|
|
|
util::point<S,T>::sanity (void) const {
|
2012-05-18 17:56:24 +10:00
|
|
|
CHECK_SOFT (std::all_of (begin (this->data),
|
|
|
|
end (this->data),
|
|
|
|
[] (double i) { return !std::isnan (i); }));
|
2011-10-18 21:45:55 +11:00
|
|
|
}
|
2011-09-13 16:49:10 +10:00
|
|
|
|
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>
|
|
|
|
util::operator* (const vector<S,T> &v, const point<S,T> &p) {
|
|
|
|
point<S,T> out;
|
2012-05-26 18:02:11 +10:00
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
out.data[i] = p.data[i] + v.data[i];
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template util::point<1,float> util::operator* (const vector<1,float>&, const point<1,float>&);
|
|
|
|
template util::point<2,float> util::operator* (const vector<2,float>&, const point<2,float>&);
|
|
|
|
template util::point<3,float> util::operator* (const vector<3,float>&, const point<3,float>&);
|
|
|
|
|
|
|
|
template util::point<1,double> util::operator* (const vector<1,double>&, const point<1,double>&);
|
|
|
|
template util::point<2,double> util::operator* (const vector<2,double>&, const point<2,double>&);
|
|
|
|
template util::point<3,double> util::operator* (const vector<3,double>&, const point<3,double>&);
|
2012-05-26 18:02:11 +10:00
|
|
|
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::point<S,T>
|
|
|
|
util::operator* (const point<S,T> &p, const vector<S,T> &v)
|
2012-05-26 18:02:11 +10:00
|
|
|
{ return v * p; }
|
|
|
|
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template util::point<1,float> util::operator* (const point<1,float>&, const vector<1,float>&);
|
|
|
|
template util::point<2,float> util::operator* (const point<2,float>&, const vector<2,float>&);
|
|
|
|
template util::point<3,float> util::operator* (const point<3,float>&, const vector<3,float>&);
|
|
|
|
|
|
|
|
template util::point<1,double> util::operator* (const point<1,double>&, const vector<1,double>&);
|
|
|
|
template util::point<2,double> util::operator* (const point<2,double>&, const vector<2,double>&);
|
|
|
|
template util::point<3,double> util::operator* (const point<3,double>&, const vector<3,double>&);
|
2012-05-26 18:02:11 +10:00
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
2011-09-13 15:12:30 +10:00
|
|
|
std::ostream&
|
2014-12-15 20:10:56 +11:00
|
|
|
util::operator<< (std::ostream &os, const util::point<S,T> &p) {
|
2012-05-18 17:56:24 +10:00
|
|
|
os << "point" << S << "(";
|
|
|
|
os << p.data[0];
|
|
|
|
|
|
|
|
for (size_t i = 1; i < S; ++i)
|
|
|
|
os << ", " << p.data[i];
|
|
|
|
|
|
|
|
os << ")";
|
2011-09-13 15:12:30 +10:00
|
|
|
return os;
|
|
|
|
}
|
2012-05-18 17:56:24 +10:00
|
|
|
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template std::ostream& util::operator<< (std::ostream &os, const util::point<1,float>&);
|
|
|
|
template std::ostream& util::operator<< (std::ostream &os, const util::point<2,float>&);
|
|
|
|
template std::ostream& util::operator<< (std::ostream &os, const util::point<3,float>&);
|
|
|
|
|
|
|
|
template std::ostream& util::operator<< (std::ostream &os, const util::point<1,double>&);
|
|
|
|
template std::ostream& util::operator<< (std::ostream &os, const util::point<2,double>&);
|
|
|
|
template std::ostream& util::operator<< (std::ostream &os, const util::point<3,double>&);
|
|
|
|
|
2014-12-19 15:00:04 +11:00
|
|
|
template std::ostream& util::operator<< (std::ostream &os, const util::point<1,size_t>&);
|
|
|
|
template std::ostream& util::operator<< (std::ostream &os, const util::point<2,size_t>&);
|
|
|
|
template std::ostream& util::operator<< (std::ostream &os, const util::point<3,size_t>&);
|
2012-06-08 16:45:39 +10:00
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
#define INSTANTIATE(T) \
|
|
|
|
template struct util::point<1,T>; \
|
|
|
|
template struct util::point<2,T>; \
|
|
|
|
template struct util::point<3,T>;
|
2012-06-08 16:45:39 +10:00
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
INSTANTIATE(int32_t)
|
|
|
|
INSTANTIATE(uint32_t)
|
|
|
|
INSTANTIATE(int64_t)
|
|
|
|
INSTANTIATE(uint64_t)
|
|
|
|
INSTANTIATE(float)
|
|
|
|
INSTANTIATE(double)
|