2011-10-18 21:45:55 +11:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* 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
|
2011-10-18 21:45:55 +11:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-05-30 20:20:19 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* 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.
|
2011-10-18 21:45:55 +11:00
|
|
|
*
|
2012-04-23 13:06:41 +10:00
|
|
|
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
|
2011-10-18 21:45:55 +11:00
|
|
|
*/
|
|
|
|
|
2011-05-23 17:18:52 +10:00
|
|
|
#include "vector.hpp"
|
|
|
|
|
|
|
|
#include "debug.hpp"
|
2011-10-18 21:45:55 +11:00
|
|
|
#include "maths.hpp"
|
2012-05-22 14:13:34 +10:00
|
|
|
#include "random.hpp"
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2011-10-18 21:45:55 +11:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cmath>
|
|
|
|
#include <limits>
|
2011-05-23 17:18:52 +10:00
|
|
|
#include <numeric>
|
|
|
|
|
2015-04-15 13:48:07 +10:00
|
|
|
using util::vector;
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2012-05-18 17:56:24 +10:00
|
|
|
|
2015-04-15 13:48:07 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
T
|
2015-04-15 13:48:07 +10:00
|
|
|
util::vector<S,T>::magnitude (void) const
|
|
|
|
{
|
2014-12-15 20:10:56 +11:00
|
|
|
// TODO: this should not truncate for integral types
|
|
|
|
return static_cast<T> (std::sqrt (magnitude2 ()));
|
2011-10-18 21:45:55 +11:00
|
|
|
}
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
|
2015-01-28 14:59:33 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
T
|
2015-04-15 13:48:07 +10:00
|
|
|
util::vector<S,T>::magnitude2 (void) const
|
|
|
|
{
|
2014-12-15 20:10:56 +11:00
|
|
|
T total { 0 };
|
2012-05-18 17:56:24 +10:00
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
total += pow2 (this->data[i]);
|
|
|
|
return total;
|
2011-10-18 21:45:55 +11:00
|
|
|
}
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
|
2015-01-28 15:00:20 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <size_t S, typename T>
|
|
|
|
T
|
2015-04-15 13:48:07 +10:00
|
|
|
util::vector<S,T>::difference (const util::vector<S,T> &rhs) const
|
|
|
|
{
|
2015-01-28 15:00:20 +11:00
|
|
|
// TODO: change the signature to ensure it does not truncate
|
|
|
|
return static_cast<T> (std::sqrt (difference2 (rhs)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <size_t S, typename T>
|
|
|
|
T
|
2015-04-15 13:48:07 +10:00
|
|
|
util::vector<S,T>::difference2 (const util::vector<S,T> &rhs) const
|
|
|
|
{
|
2015-01-28 15:00:20 +11:00
|
|
|
T sum {0};
|
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
sum += pow2 (this->data[i] - rhs.data[i]);
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::vector<S,T>&
|
2015-04-15 13:48:07 +10:00
|
|
|
util::vector<S,T>::normalise (void)
|
|
|
|
{
|
2014-12-15 20:10:56 +11:00
|
|
|
T mag = magnitude ();
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2012-05-18 17:56:24 +10:00
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
this->data[i] /= mag;
|
2011-05-23 17:18:52 +10:00
|
|
|
|
2011-10-18 21:45:55 +11:00
|
|
|
return *this;
|
2011-05-23 17:18:52 +10:00
|
|
|
}
|
2011-10-18 21:45:55 +11:00
|
|
|
|
|
|
|
|
2015-02-19 14:20:01 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::vector<S,T>
|
2015-04-15 13:48:07 +10:00
|
|
|
util::vector<S,T>::normalised (void) const
|
|
|
|
{
|
2014-12-15 20:10:56 +11:00
|
|
|
T mag = magnitude ();
|
|
|
|
util::vector<S,T> out;
|
2014-08-18 22:14:31 +10:00
|
|
|
|
2012-05-18 17:56:24 +10:00
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
out.data[i] = this->data[i] / mag;
|
|
|
|
|
|
|
|
return out;
|
2011-10-18 21:45:55 +11:00
|
|
|
}
|
|
|
|
|
2015-04-02 14:57:30 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2014-12-15 20:10:56 +11:00
|
|
|
template <typename T>
|
|
|
|
util::vector<2,T>
|
2015-04-02 14:57:30 +11:00
|
|
|
util::polar_to_cartesian (util::vector<2,T> v)
|
|
|
|
{
|
2014-12-15 20:10:56 +11:00
|
|
|
return util::vector<2,T> {
|
2015-04-01 17:05:24 +11:00
|
|
|
v[0] * std::cos (v[1]),
|
|
|
|
v[0] * std::sin (v[1])
|
2013-08-06 21:23:56 +10:00
|
|
|
};
|
2013-07-30 23:52:31 +10:00
|
|
|
}
|
2011-10-18 21:45:55 +11:00
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
|
2015-02-19 14:20:01 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <typename T>
|
2015-04-02 14:57:30 +11:00
|
|
|
util::vector<2,T>
|
|
|
|
util::cartesian_to_polar (util::vector<2,T> v)
|
|
|
|
{
|
|
|
|
return util::vector<2,T> {
|
|
|
|
std::hypot (v.x, v.y),
|
|
|
|
std::atan2 (v.y, v.x)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <typename T>
|
2014-12-15 20:10:56 +11:00
|
|
|
util::vector<3,T>
|
|
|
|
util::cross (const util::vector<3,T> &a,
|
|
|
|
const util::vector<3,T> &b)
|
|
|
|
{
|
|
|
|
return util::vector<3,T> {
|
2013-08-06 21:23:56 +10:00
|
|
|
a.y * b.z - a.z * b.y,
|
|
|
|
a.z * b.x - a.x * b.z,
|
|
|
|
a.x * b.y - a.y * b.x
|
|
|
|
};
|
2012-05-26 18:02:11 +10:00
|
|
|
}
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template util::vector3f util::cross(const util::vector3f&, const util::vector3f&);
|
|
|
|
template util::vector3d util::cross(const util::vector3d&, const util::vector3d&);
|
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <typename T>
|
|
|
|
util::vector<3,T>
|
2015-04-15 13:48:07 +10:00
|
|
|
util::spherical_to_cartesian (const util::vector<3,T> &s)
|
|
|
|
{
|
2014-12-15 20:10:56 +11:00
|
|
|
return util::vector<3,T> {
|
2011-10-29 23:14:07 +11:00
|
|
|
s.x * sin (s.y) * cos (s.z),
|
|
|
|
s.x * sin (s.y) * sin (s.z),
|
|
|
|
s.x * cos (s.y),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-19 14:20:01 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <typename T>
|
|
|
|
util::vector<3,T>
|
2015-04-15 13:48:07 +10:00
|
|
|
util::cartesian_to_spherical (const util::vector<3,T> &c)
|
|
|
|
{
|
2014-12-15 20:10:56 +11:00
|
|
|
T mag = c.magnitude ();
|
2011-10-29 23:14:07 +11:00
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
return util::vector<3,T> {
|
2011-10-29 23:14:07 +11:00
|
|
|
mag,
|
|
|
|
acos (c.z / mag),
|
|
|
|
atan2 (c.y, c.x)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
2012-05-03 15:56:56 +10:00
|
|
|
bool
|
2015-04-15 13:48:07 +10:00
|
|
|
util::vector<S,T>::is_zero (void) const
|
|
|
|
{
|
2015-02-19 13:26:27 +11:00
|
|
|
return std::all_of (std::begin (this->data),
|
|
|
|
std::end (this->data),
|
2014-12-15 20:10:56 +11:00
|
|
|
[] (T i) { return almost_zero (i); });
|
2012-05-03 15:56:56 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-15 14:01:51 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <size_t S, typename T>
|
|
|
|
const util::vector<S,T>
|
|
|
|
util::vector<S,T>::ZERO (T{0});
|
|
|
|
|
|
|
|
|
2013-08-06 14:32:08 +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
|
2015-04-15 13:48:07 +10:00
|
|
|
util::vector<S,T>::sanity (void) const
|
|
|
|
{
|
2015-02-19 13:26:27 +11:00
|
|
|
CHECK (std::all_of (std::begin (this->data),
|
|
|
|
std::end (this->data),
|
2015-01-28 14:49:34 +11:00
|
|
|
[] (T i) { return !std::isnan (i); }));
|
2012-05-18 17:56:24 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-19 13:27:06 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// ostream
|
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
2011-10-18 21:45:55 +11:00
|
|
|
std::ostream&
|
2015-04-15 13:48:07 +10:00
|
|
|
util::operator<< (std::ostream &os, const util::vector<S,T> &v)
|
|
|
|
{
|
2012-05-18 17:56:24 +10:00
|
|
|
os << "vec" << S << "(" << v.data[0];
|
2012-06-14 18:32:17 +10:00
|
|
|
for (size_t i = 1; i < S; ++i)
|
|
|
|
os << ", " << v.data[i];
|
2012-05-18 17:56:24 +10:00
|
|
|
os << ")";
|
2011-10-18 21:45:55 +11:00
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2011-10-29 21:17:48 +11:00
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
2015-02-02 21:22:38 +11:00
|
|
|
const json::tree::node&
|
2015-04-15 13:48:07 +10:00
|
|
|
util::operator>> (const json::tree::node &node, util::vector<S,T> &v)
|
|
|
|
{
|
2015-02-02 21:22:38 +11:00
|
|
|
const json::tree::array &array = node.as_array ();
|
2014-08-18 22:14:31 +10:00
|
|
|
if (array.size () != S)
|
2012-05-18 17:56:24 +10:00
|
|
|
throw std::runtime_error ("Invalid dimensionality for json-to-vector");
|
|
|
|
|
2014-08-01 21:39:13 +10:00
|
|
|
// XXX: This used to be a std::transform but gcc 4.9.0 hit an internal
|
|
|
|
// compiler error at this point in release mode, so we dumb it down a
|
|
|
|
// little.
|
|
|
|
for (size_t i = 0; i < array.size (); ++i)
|
2014-12-15 20:10:56 +11:00
|
|
|
v.data[i] = static_cast<T> (array[i].as_number ().native ());
|
2014-08-01 21:39:13 +10:00
|
|
|
|
2012-05-18 17:56:24 +10:00
|
|
|
return node;
|
2011-10-29 21:17:48 +11:00
|
|
|
}
|
2012-05-18 17:56:24 +10:00
|
|
|
|
|
|
|
|
2015-01-21 23:37:45 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#define INSTANTIATE_S_T(S,T) \
|
|
|
|
template struct util::vector<S,T>; \
|
|
|
|
template std::ostream& util::operator<< (std::ostream&, const util::vector<S,T> &v);\
|
2015-02-02 21:22:38 +11:00
|
|
|
template const json::tree::node& util::operator>> (const json::tree::node&, util::vector<S,T>&);
|
2012-05-18 17:56:24 +10:00
|
|
|
|
|
|
|
|
2015-01-21 23:37:45 +11:00
|
|
|
#define INSTANTIATE(T) \
|
|
|
|
INSTANTIATE_S_T(1,T) \
|
|
|
|
INSTANTIATE_S_T(2,T) \
|
|
|
|
INSTANTIATE_S_T(3,T) \
|
|
|
|
INSTANTIATE_S_T(4,T)
|
2012-05-22 14:13:34 +10:00
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
|
|
|
|
INSTANTIATE(uint32_t)
|
|
|
|
INSTANTIATE(int32_t)
|
|
|
|
INSTANTIATE(uint64_t)
|
|
|
|
INSTANTIATE(int64_t)
|
|
|
|
INSTANTIATE(float)
|
|
|
|
INSTANTIATE(double)
|
2012-05-22 14:13:34 +10:00
|
|
|
|
2015-04-01 17:05:24 +11:00
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2012-05-22 14:13:34 +10:00
|
|
|
namespace util {
|
2015-04-01 17:05:24 +11:00
|
|
|
template vector<2,float> polar_to_cartesian (util::vector<2,float>);
|
2015-04-02 14:57:30 +11:00
|
|
|
template vector<2,float> cartesian_to_polar (util::vector<2,float>);
|
2015-04-01 17:05:24 +11:00
|
|
|
|
2014-12-15 20:10:56 +11:00
|
|
|
template <> vector<1,float> random (void) { util::vector<1,float> out; randomise (out.data); return out; }
|
|
|
|
template <> vector<2,float> random (void) { util::vector<2,float> out; randomise (out.data); return out; }
|
|
|
|
template <> vector<3,float> random (void) { util::vector<3,float> out; randomise (out.data); return out; }
|
|
|
|
template <> vector<4,float> random (void) { util::vector<4,float> out; randomise (out.data); return out; }
|
|
|
|
|
|
|
|
template <> vector<1,double> random (void) { util::vector<1,double> out; randomise (out.data); return out; }
|
|
|
|
template <> vector<2,double> random (void) { util::vector<2,double> out; randomise (out.data); return out; }
|
|
|
|
template <> vector<3,double> random (void) { util::vector<3,double> out; randomise (out.data); return out; }
|
|
|
|
template <> vector<4,double> random (void) { util::vector<4,double> out; randomise (out.data); return out; }
|
2012-05-22 14:13:34 +10:00
|
|
|
}
|
|
|
|
|
2015-04-02 14:57:42 +11:00
|
|
|
template <>
|
|
|
|
bool
|
|
|
|
almost_equal [[gnu::pure]] (const util::vector2f &a, const util::vector2f &b)
|
|
|
|
{
|
|
|
|
return std::equal (a.begin (), a.end (), b.begin (), almost_equal<float>);
|
|
|
|
}
|