2011-06-23 22:04:51 +10: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-06-23 22:04:51 +10: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-06-23 22:04:51 +10:00
|
|
|
*
|
2016-03-11 12:48:19 +11:00
|
|
|
* Copyright 2011-2016 Danny Robson <danny@nerdcruft.net>
|
2011-06-23 22:04:51 +10:00
|
|
|
*/
|
|
|
|
|
2016-03-11 12:48:19 +11:00
|
|
|
#include "./point.hpp"
|
2011-06-23 22:04:51 +10:00
|
|
|
|
2016-03-11 12:48:19 +11:00
|
|
|
#include "./debug.hpp"
|
|
|
|
#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
|
|
|
|
2015-04-15 14:14:01 +10:00
|
|
|
using util::point;
|
2011-06-23 22:04:51 +10:00
|
|
|
|
2011-10-18 21:45:55 +11:00
|
|
|
|
2015-03-07 03:20:07 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
util::vector<S,T>
|
2015-04-15 14:14:01 +10:00
|
|
|
util::point<S,T>::to (point<S,T> rhs) const
|
2015-03-07 03:20:07 +11:00
|
|
|
{
|
2014-12-15 20:10:56 +11:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-26 18:02:11 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2014-12-15 20:10:56 +11:00
|
|
|
template <size_t S, typename T>
|
2015-03-07 03:20:07 +11:00
|
|
|
util::vector<S,T>
|
2015-04-15 14:14:01 +10:00
|
|
|
util::point<S,T>::from (point<S,T> rhs) const
|
2015-03-07 03:20:07 +11:00
|
|
|
{
|
|
|
|
util::vector<S,T> out;
|
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
out.data[i] = this->data[i] - rhs.data[i];
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <size_t S, typename T>
|
2011-10-18 21:45:55 +11:00
|
|
|
void
|
2015-04-15 14:14:01 +10:00
|
|
|
util::point<S,T>::sanity (void) const
|
|
|
|
{
|
|
|
|
CHECK (std::all_of (this->begin (),
|
|
|
|
this->end (),
|
|
|
|
[] (auto i) { return !std::isnan (i); }));
|
2011-10-18 21:45:55 +11:00
|
|
|
}
|
2011-09-13 16:49:10 +10:00
|
|
|
|
|
|
|
|
2015-01-05 18:08:20 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <size_t S, typename T>
|
|
|
|
const util::point<S,T> util::point<S,T>::ORIGIN (T {0});
|
|
|
|
|
2015-01-21 23:36:22 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2016-03-11 12:48:19 +11:00
|
|
|
#define INSTANTIATE_S_T(S,T) \
|
|
|
|
template struct util::point<S,T>;
|
2015-01-21 23:36:22 +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-06-08 16:45:39 +10:00
|
|
|
|
|
|
|
|
2015-09-22 17:24:16 +10:00
|
|
|
INSTANTIATE(int16_t)
|
|
|
|
INSTANTIATE(uint16_t)
|
2014-12-15 20:10:56 +11:00
|
|
|
INSTANTIATE(int32_t)
|
|
|
|
INSTANTIATE(uint32_t)
|
|
|
|
INSTANTIATE(int64_t)
|
|
|
|
INSTANTIATE(uint64_t)
|
|
|
|
INSTANTIATE(float)
|
|
|
|
INSTANTIATE(double)
|