mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1374 lines
56 KiB
1374 lines
56 KiB
|
16 years ago
|
#ifndef Magnum_Math_Vector_h
|
||
|
|
#define Magnum_Math_Vector_h
|
||
|
16 years ago
|
/*
|
||
|
|
This file is part of Magnum.
|
||
|
|
|
||
|
13 years ago
|
Copyright © 2010, 2011, 2012, 2013 Vladimír Vondruš <mosra@centrum.cz>
|
||
|
|
|
||
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||
|
|
copy of this software and associated documentation files (the "Software"),
|
||
|
|
to deal in the Software without restriction, including without limitation
|
||
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
||
|
|
Software is furnished to do so, subject to the following conditions:
|
||
|
|
|
||
|
|
The above copyright notice and this permission notice shall be included
|
||
|
|
in all copies or substantial portions of the Software.
|
||
|
|
|
||
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||
|
|
DEALINGS IN THE SOFTWARE.
|
||
|
16 years ago
|
*/
|
||
|
|
|
||
|
|
/** @file
|
||
|
16 years ago
|
* @brief Class Magnum::Math::Vector
|
||
|
16 years ago
|
*/
|
||
|
|
|
||
|
13 years ago
|
#include <cmath>
|
||
|
|
#include <limits>
|
||
|
14 years ago
|
#include <Utility/Assert.h>
|
||
|
13 years ago
|
#include <Utility/Debug.h>
|
||
|
|
#include <Utility/ConfigurationValue.h>
|
||
|
14 years ago
|
|
||
|
13 years ago
|
#include "Math/Angle.h"
|
||
|
13 years ago
|
#include "Math/BoolVector.h"
|
||
|
13 years ago
|
#include "Math/TypeTraits.h"
|
||
|
13 years ago
|
|
||
|
|
#include "magnumVisibility.h"
|
||
|
16 years ago
|
|
||
|
16 years ago
|
namespace Magnum { namespace Math {
|
||
|
16 years ago
|
|
||
|
13 years ago
|
namespace Implementation {
|
||
|
|
template<std::size_t, class, class> struct VectorConverter;
|
||
|
|
}
|
||
|
|
|
||
|
14 years ago
|
/**
|
||
|
|
@brief %Vector
|
||
|
14 years ago
|
@tparam size %Vector size
|
||
|
13 years ago
|
@tparam T Underlying data type
|
||
|
14 years ago
|
|
||
|
14 years ago
|
See @ref matrix-vector for brief introduction.
|
||
|
14 years ago
|
@configurationvalueref{Magnum::Math::Vector}
|
||
|
|
*/
|
||
|
13 years ago
|
template<std::size_t size, class T> class Vector {
|
||
|
|
static_assert(size != 0, "Vector cannot have zero elements");
|
||
|
|
|
||
|
|
template<std::size_t, class> friend class Vector;
|
||
|
|
|
||
|
13 years ago
|
#ifdef CORRADE_GCC46_COMPATIBILITY
|
||
|
|
/* So it can call internal constexpr constructor from one value */
|
||
|
|
template<std::size_t, class> friend class Matrix;
|
||
|
|
#endif
|
||
|
|
|
||
|
16 years ago
|
public:
|
||
|
13 years ago
|
typedef T Type; /**< @brief Underlying data type */
|
||
|
13 years ago
|
const static std::size_t Size = size; /**< @brief %Vector size */
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief %Vector from array
|
||
|
|
* @return Reference to the data as if it was Vector, thus doesn't
|
||
|
|
* perform any copying.
|
||
|
|
*
|
||
|
|
* @attention Use with caution, the function doesn't check whether the
|
||
|
|
* array is long enough.
|
||
|
|
*/
|
||
|
13 years ago
|
static Vector<size, T>& from(T* data) {
|
||
|
13 years ago
|
return *reinterpret_cast<Vector<size, T>*>(data);
|
||
|
|
}
|
||
|
|
/** @overload */
|
||
|
13 years ago
|
static const Vector<size, T>& from(const T* data) {
|
||
|
13 years ago
|
return *reinterpret_cast<const Vector<size, T>*>(data);
|
||
|
|
}
|
||
|
|
|
||
|
14 years ago
|
/**
|
||
|
|
* @brief Dot product
|
||
|
|
*
|
||
|
13 years ago
|
* Returns `0` if two vectors are orthogonal, `1` if two *normalized*
|
||
|
|
* vectors are parallel and `-1` if two *normalized* vectors are
|
||
|
|
* antiparallel. @f[
|
||
|
13 years ago
|
* \boldsymbol a \cdot \boldsymbol b = \sum_{i=0}^{n-1} \boldsymbol a_i \boldsymbol b_i
|
||
|
14 years ago
|
* @f]
|
||
|
13 years ago
|
* @see dot() const, operator-(), Vector2::perpendicular()
|
||
|
14 years ago
|
*/
|
||
|
13 years ago
|
static T dot(const Vector<size, T>& a, const Vector<size, T>& b) {
|
||
|
13 years ago
|
return (a*b).sum();
|
||
|
14 years ago
|
}
|
||
|
|
|
||
|
14 years ago
|
/**
|
||
|
13 years ago
|
* @brief Angle between normalized vectors
|
||
|
14 years ago
|
*
|
||
|
14 years ago
|
* Expects that both vectors are normalized. @f[
|
||
|
13 years ago
|
* \theta = acos \left( \frac{\boldsymbol a \cdot \boldsymbol b}{|\boldsymbol a| |\boldsymbol b|} \right) = acos (\boldsymbol a \cdot \boldsymbol b)
|
||
|
14 years ago
|
* @f]
|
||
|
13 years ago
|
* @see isNormalized(), Quaternion::angle(), Complex::angle()
|
||
|
14 years ago
|
*/
|
||
|
13 years ago
|
static Rad<T> angle(const Vector<size, T>& normalizedA, const Vector<size, T>& normalizedB);
|
||
|
16 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Default constructor
|
||
|
|
*
|
||
|
|
* @f[
|
||
|
|
* \boldsymbol v = \boldsymbol 0
|
||
|
|
* @f]
|
||
|
|
*/
|
||
|
13 years ago
|
constexpr /*implicit*/ Vector(): _data() {}
|
||
|
16 years ago
|
|
||
|
14 years ago
|
/** @todo Creating Vector from combination of vector and scalar types */
|
||
|
|
|
||
|
14 years ago
|
/**
|
||
|
13 years ago
|
* @brief Construct vector from values
|
||
|
14 years ago
|
* @param first First value
|
||
|
|
* @param next Next values
|
||
|
|
*/
|
||
|
13 years ago
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
13 years ago
|
template<class ...U> constexpr /*implicit*/ Vector(T first, U... next);
|
||
|
13 years ago
|
#else
|
||
|
13 years ago
|
template<class ...U, class V = typename std::enable_if<sizeof...(U)+1 == size, T>::type> constexpr /*implicit*/ Vector(T first, U... next): _data{first, next...} {}
|
||
|
13 years ago
|
#endif
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/** @brief Construct vector with one value for all fields */
|
||
|
13 years ago
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
13 years ago
|
constexpr explicit Vector(T value);
|
||
|
13 years ago
|
#else
|
||
|
13 years ago
|
#ifndef CORRADE_GCC46_COMPATIBILITY
|
||
|
13 years ago
|
template<class U, class V = typename std::enable_if<std::is_same<T, U>::value && size != 1, T>::type> constexpr explicit Vector(U value): Vector(typename Implementation::GenerateSequence<size>::Type(), value) {}
|
||
|
13 years ago
|
#else
|
||
|
13 years ago
|
template<class U, class V = typename std::enable_if<std::is_same<T, U>::value && size != 1, T>::type> explicit Vector(U value) {
|
||
|
13 years ago
|
*this = Vector(typename Implementation::GenerateSequence<size>::Type(), value);
|
||
|
|
}
|
||
|
|
#endif
|
||
|
14 years ago
|
#endif
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Construct vector from another of different type
|
||
|
|
*
|
||
|
|
* Performs only default casting on the values, no rounding or
|
||
|
|
* anything else. Example usage:
|
||
|
|
* @code
|
||
|
13 years ago
|
* Vector<4, Float> floatingPoint(1.3f, 2.7f, -15.0f, 7.0f);
|
||
|
|
* Vector<4, Byte> integral(floatingPoint);
|
||
|
13 years ago
|
* // integral == {1, 2, -15, 7}
|
||
|
|
* @endcode
|
||
|
|
*/
|
||
|
13 years ago
|
#ifndef CORRADE_GCC46_COMPATIBILITY
|
||
|
13 years ago
|
template<class U> constexpr explicit Vector(const Vector<size, U>& other): Vector(typename Implementation::GenerateSequence<size>::Type(), other) {}
|
||
|
13 years ago
|
#else
|
||
|
13 years ago
|
template<class U> explicit Vector(const Vector<size, U>& other) {
|
||
|
13 years ago
|
*this = Vector(typename Implementation::GenerateSequence<size>::Type(), other);
|
||
|
|
}
|
||
|
|
#endif
|
||
|
13 years ago
|
|
||
|
13 years ago
|
/** @brief Construct vector from external representation */
|
||
|
13 years ago
|
#ifndef CORRADE_GCC46_COMPATIBILITY
|
||
|
13 years ago
|
template<class U, class V = decltype(Implementation::VectorConverter<size, T, U>::from(std::declval<U>()))> constexpr explicit Vector(const U& other): Vector(Implementation::VectorConverter<size, T, U>::from(other)) {}
|
||
|
13 years ago
|
#else
|
||
|
13 years ago
|
template<class U, class V = decltype(Implementation::VectorConverter<size, T, U>::from(std::declval<U>()))> explicit Vector(const U& other) {
|
||
|
13 years ago
|
*this = Implementation::VectorConverter<size, T, U>::from(other);
|
||
|
13 years ago
|
}
|
||
|
|
#endif
|
||
|
13 years ago
|
|
||
|
16 years ago
|
/** @brief Copy constructor */
|
||
|
13 years ago
|
constexpr Vector(const Vector<size, T>&) = default;
|
||
|
16 years ago
|
|
||
|
13 years ago
|
/** @brief Assignment operator */
|
||
|
13 years ago
|
Vector<size, T>& operator=(const Vector<size, T>&) = default;
|
||
|
13 years ago
|
|
||
|
13 years ago
|
/** @brief Convert vector to external representation */
|
||
|
13 years ago
|
template<class U, class V = decltype(Implementation::VectorConverter<size, T, U>::to(std::declval<Vector<size, T>>()))> constexpr explicit operator U() const {
|
||
|
13 years ago
|
/** @bug Why this is not constexpr under GCC 4.6? */
|
||
|
13 years ago
|
return Implementation::VectorConverter<size, T, U>::to(*this);
|
||
|
|
}
|
||
|
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Raw data
|
||
|
13 years ago
|
* @return One-dimensional array of `size` length.
|
||
|
13 years ago
|
*
|
||
|
13 years ago
|
* @see operator[]()
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
T* data() { return _data; }
|
||
|
|
constexpr const T* data() const { return _data; } /**< @overload */
|
||
|
13 years ago
|
|
||
|
|
/**
|
||
|
|
* @brief Value at given position
|
||
|
|
*
|
||
|
|
* @see data()
|
||
|
|
*/
|
||
|
13 years ago
|
T& operator[](std::size_t pos) { return _data[pos]; }
|
||
|
|
constexpr T operator[](std::size_t pos) const { return _data[pos]; } /**< @overload */
|
||
|
13 years ago
|
|
||
|
|
/** @brief Equality comparison */
|
||
|
13 years ago
|
bool operator==(const Vector<size, T>& other) const {
|
||
|
13 years ago
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
13 years ago
|
if(!TypeTraits<T>::equals(_data[i], other._data[i])) return false;
|
||
|
13 years ago
|
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @brief Non-equality comparison */
|
||
|
13 years ago
|
bool operator!=(const Vector<size, T>& other) const {
|
||
|
13 years ago
|
return !operator==(other);
|
||
|
|
}
|
||
|
16 years ago
|
|
||
|
13 years ago
|
/** @brief Component-wise less than */
|
||
|
13 years ago
|
BoolVector<size> operator<(const Vector<size, T>& other) const;
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/** @brief Component-wise less than or equal */
|
||
|
13 years ago
|
BoolVector<size> operator<=(const Vector<size, T>& other) const;
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/** @brief Component-wise greater than or equal */
|
||
|
13 years ago
|
BoolVector<size> operator>=(const Vector<size, T>& other) const;
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/** @brief Component-wise greater than */
|
||
|
13 years ago
|
BoolVector<size> operator>(const Vector<size, T>& other) const;
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Whether the vector is zero
|
||
|
|
*
|
||
|
|
* @f[
|
||
|
|
* |\boldsymbol a \cdot \boldsymbol a - 0| < \epsilon^2 \cong \epsilon
|
||
|
|
* @f]
|
||
|
|
* @see dot(), normalized()
|
||
|
|
*/
|
||
|
|
bool isZero() const {
|
||
|
|
return Implementation::isZeroSquared(dot());
|
||
|
|
}
|
||
|
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Whether the vector is normalized
|
||
|
|
*
|
||
|
|
* The vector is normalized if it has unit length: @f[
|
||
|
13 years ago
|
* |\boldsymbol a \cdot \boldsymbol a - 1| < 2 \epsilon + \epsilon^2 \cong 2 \epsilon
|
||
|
13 years ago
|
* @f]
|
||
|
|
* @see dot(), normalized()
|
||
|
|
*/
|
||
|
13 years ago
|
bool isNormalized() const {
|
||
|
13 years ago
|
return Implementation::isNormalizedSquared(dot());
|
||
|
13 years ago
|
}
|
||
|
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Negated vector
|
||
|
|
*
|
||
|
13 years ago
|
* @f[
|
||
|
|
* \boldsymbol b_i = -\boldsymbol a_i
|
||
|
13 years ago
|
* @f]
|
||
|
13 years ago
|
* @see Vector2::perpendicular()
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T> operator-() const;
|
||
|
13 years ago
|
|
||
|
|
/**
|
||
|
|
* @brief Add and assign vector
|
||
|
|
*
|
||
|
|
* The computation is done in-place. @f[
|
||
|
|
* \boldsymbol a_i = \boldsymbol a_i + \boldsymbol b_i
|
||
|
|
* @f]
|
||
|
|
*/
|
||
|
|
Vector<size, T>& operator+=(const Vector<size, T>& other) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
_data[i] += other._data[i];
|
||
|
|
|
||
|
|
return *this;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Add vector
|
||
|
|
*
|
||
|
13 years ago
|
* @see operator+=(), sum()
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T> operator+(const Vector<size, T>& other) const {
|
||
|
13 years ago
|
return Vector<size, T>(*this) += other;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Subtract and assign vector
|
||
|
|
*
|
||
|
|
* The computation is done in-place. @f[
|
||
|
|
* \boldsymbol a_i = \boldsymbol a_i - \boldsymbol b_i
|
||
|
|
* @f]
|
||
|
|
*/
|
||
|
|
Vector<size, T>& operator-=(const Vector<size, T>& other) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
_data[i] -= other._data[i];
|
||
|
|
|
||
|
|
return *this;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Subtract vector
|
||
|
|
*
|
||
|
|
* @see operator-=()
|
||
|
|
*/
|
||
|
13 years ago
|
Vector<size, T> operator-(const Vector<size, T>& other) const {
|
||
|
13 years ago
|
return Vector<size, T>(*this) -= other;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Multiply vector with number and assign
|
||
|
|
*
|
||
|
|
* The computation is done in-place. @f[
|
||
|
|
* \boldsymbol a_i = b \boldsymbol a_i
|
||
|
|
* @f]
|
||
|
13 years ago
|
* @see operator*=(const Vector<size, T>&),
|
||
|
|
* operator*=(Vector<size, Integral>&, FloatingPoint)
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T>& operator*=(T number) {
|
||
|
13 years ago
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
_data[i] *= number;
|
||
|
|
|
||
|
|
return *this;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Multiply vector with number
|
||
|
|
*
|
||
|
13 years ago
|
* @see operator*(const Vector<size, T>&) const,
|
||
|
|
* operator*=(T), operator*(T, const Vector<size, T>&),
|
||
|
|
* operator*(const Vector<size, Integral>&, FloatingPoint)
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T> operator*(T number) const {
|
||
|
13 years ago
|
return Vector<size, T>(*this) *= number;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Divide vector with number and assign
|
||
|
|
*
|
||
|
|
* The computation is done in-place. @f[
|
||
|
|
* \boldsymbol a_i = \frac{\boldsymbol a_i} b
|
||
|
|
* @f]
|
||
|
13 years ago
|
* @see operator/=(const Vector<size, T>&),
|
||
|
|
* operator/=(Vector<size, Integral>&, FloatingPoint)
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T>& operator/=(T number) {
|
||
|
13 years ago
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
_data[i] /= number;
|
||
|
|
|
||
|
|
return *this;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Divide vector with number
|
||
|
|
*
|
||
|
13 years ago
|
* @see operator/(const Vector<size, T>&) const,
|
||
|
|
* operator/=(T), operator/(T, const Vector<size, T>&),
|
||
|
|
* operator/(const Vector<size, Integral>&, FloatingPoint)
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T> operator/(T number) const {
|
||
|
13 years ago
|
return Vector<size, T>(*this) /= number;
|
||
|
|
}
|
||
|
|
|
||
|
14 years ago
|
/**
|
||
|
|
* @brief Multiply vector component-wise and assign
|
||
|
|
*
|
||
|
14 years ago
|
* The computation is done in-place. @f[
|
||
|
|
* \boldsymbol a_i = \boldsymbol a_i \boldsymbol b_i
|
||
|
|
* @f]
|
||
|
13 years ago
|
* @see operator*=(T),
|
||
|
|
* operator*=(Vector<size, Integral>&, const Vector<size, FloatingPoint>&)
|
||
|
14 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T>& operator*=(const Vector<size, T>& other) {
|
||
|
14 years ago
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
13 years ago
|
_data[i] *= other._data[i];
|
||
|
14 years ago
|
|
||
|
|
return *this;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
14 years ago
|
* @brief Multiply vector component-wise
|
||
|
14 years ago
|
*
|
||
|
13 years ago
|
* @see operator*(T) const, operator*=(const Vector<size, T>&),
|
||
|
|
* operator*(const Vector<size, Integral>&, const Vector<size, FloatingPoint>&)
|
||
|
14 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T> operator*(const Vector<size, T>& other) const {
|
||
|
13 years ago
|
return Vector<size, T>(*this) *= other;
|
||
|
14 years ago
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief Divide vector component-wise and assign
|
||
|
|
*
|
||
|
14 years ago
|
* The computation is done in-place. @f[
|
||
|
|
* \boldsymbol a_i = \frac{\boldsymbol a_i}{\boldsymbol b_i}
|
||
|
|
* @f]
|
||
|
13 years ago
|
* @see operator/=(T),
|
||
|
|
* operator/=(Vector<size, Integral>&, const Vector<size, FloatingPoint>&)
|
||
|
14 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T>& operator/=(const Vector<size, T>& other) {
|
||
|
14 years ago
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
13 years ago
|
_data[i] /= other._data[i];
|
||
|
14 years ago
|
|
||
|
|
return *this;
|
||
|
|
}
|
||
|
|
|
||
|
14 years ago
|
/**
|
||
|
|
* @brief Divide vector component-wise
|
||
|
|
*
|
||
|
13 years ago
|
* @see operator/(T) const, operator/=(const Vector<size, T>&),
|
||
|
|
* operator/(const Vector<size, Integral>&, const Vector<size, FloatingPoint>&)
|
||
|
14 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T> operator/(const Vector<size, T>& other) const {
|
||
|
13 years ago
|
return Vector<size, T>(*this) /= other;
|
||
|
14 years ago
|
}
|
||
|
|
|
||
|
14 years ago
|
/**
|
||
|
14 years ago
|
* @brief Dot product of the vector
|
||
|
14 years ago
|
*
|
||
|
14 years ago
|
* Should be used instead of length() for comparing vector length with
|
||
|
14 years ago
|
* other values, because it doesn't compute the square root. @f[
|
||
|
13 years ago
|
* \boldsymbol a \cdot \boldsymbol a = \sum_{i=0}^{n-1} \boldsymbol a_i^2
|
||
|
14 years ago
|
* @f]
|
||
|
13 years ago
|
* @see dot(const Vector<size, T>&, const Vector<size, T>&), isNormalized()
|
||
|
14 years ago
|
*/
|
||
|
13 years ago
|
T dot() const { return dot(*this, *this); }
|
||
|
16 years ago
|
|
||
|
14 years ago
|
/**
|
||
|
14 years ago
|
* @brief %Vector length
|
||
|
14 years ago
|
*
|
||
|
13 years ago
|
* See also dot() const which is faster for comparing length with other
|
||
|
|
* values. @f[
|
||
|
13 years ago
|
* |\boldsymbol a| = \sqrt{\boldsymbol a \cdot \boldsymbol a}
|
||
|
14 years ago
|
* @f]
|
||
|
13 years ago
|
* @see lengthInverted(), Math::sqrt(), normalized(), resized()
|
||
|
13 years ago
|
* @todo something like std::hypot() for possibly better precision?
|
||
|
14 years ago
|
*/
|
||
|
13 years ago
|
T length() const { return std::sqrt(dot()); }
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Inverse vector length
|
||
|
|
*
|
||
|
|
* @f[
|
||
|
|
* \frac{1}{|\boldsymbol a|} = \frac{1}{\sqrt{\boldsymbol a \cdot \boldsymbol a}}
|
||
|
|
* @f]
|
||
|
13 years ago
|
* @see length(), Math::sqrtInverted(), normalized(), resized()
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
T lengthInverted() const { return T(1)/length(); }
|
||
|
13 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Normalized vector (of unit length)
|
||
|
|
*
|
||
|
13 years ago
|
* @see isNormalized(), lengthInverted(), resized()
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T> normalized() const { return *this*lengthInverted(); }
|
||
|
16 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Resized vector
|
||
|
|
*
|
||
|
|
* Convenience equivalent to the following code. Due to operation order
|
||
|
|
* this function is faster than the obvious way of sizing normalized()
|
||
|
|
* vector.
|
||
|
|
* @code
|
||
|
|
* vec*(vec.lengthInverted()*length) // the brackets are important
|
||
|
|
* @endcode
|
||
|
|
* @see normalized()
|
||
|
|
*/
|
||
|
13 years ago
|
Vector<size, T> resized(T length) const {
|
||
|
13 years ago
|
return *this*(lengthInverted()*length);
|
||
|
|
}
|
||
|
|
|
||
|
14 years ago
|
/**
|
||
|
13 years ago
|
* @brief %Vector projected onto line
|
||
|
14 years ago
|
*
|
||
|
13 years ago
|
* Returns vector projected onto @p line. @f[
|
||
|
14 years ago
|
* \boldsymbol a_1 = \frac{\boldsymbol a \cdot \boldsymbol b}{\boldsymbol b \cdot \boldsymbol b} \boldsymbol b
|
||
|
|
* @f]
|
||
|
13 years ago
|
* @see dot(), projectedOntoNormalized()
|
||
|
14 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T> projected(const Vector<size, T>& line) const {
|
||
|
13 years ago
|
return line*dot(*this, line)/line.dot();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief %Vector projected onto normalized line
|
||
|
|
*
|
||
|
|
* Slightly faster alternative to projected(), expects @p line to be
|
||
|
|
* normalized. @f[
|
||
|
|
* \boldsymbol a_1 = \frac{\boldsymbol a \cdot \boldsymbol b}{\boldsymbol b \cdot \boldsymbol b} \boldsymbol b =
|
||
|
|
* (\boldsymbol a \cdot \boldsymbol b) \boldsymbol b
|
||
|
|
* @f]
|
||
|
13 years ago
|
* @see dot()
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
Vector<size, T> projectedOntoNormalized(const Vector<size, T>& line) const;
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Sum of values in the vector
|
||
|
|
*
|
||
|
|
* @see operator+()
|
||
|
|
*/
|
||
|
13 years ago
|
T sum() const;
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Product of values in the vector
|
||
|
|
*
|
||
|
13 years ago
|
* @see operator*(const Vector<size, T>&) const
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
T product() const;
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Minimal value in the vector
|
||
|
|
*
|
||
|
13 years ago
|
* @see @ref Math::min(), @ref Vector2::minmax()
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
T min() const;
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/**
|
||
|
|
* @brief Maximal value in the vector
|
||
|
|
*
|
||
|
13 years ago
|
* @see @ref Math::max(), @ref Vector2::minmax()
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
T max() const;
|
||
|
14 years ago
|
|
||
|
13 years ago
|
private:
|
||
|
13 years ago
|
/* Implementation for Vector<size, T>::Vector(const Vector<size, U>&) */
|
||
|
13 years ago
|
template<class U, std::size_t ...sequence> constexpr explicit Vector(Implementation::Sequence<sequence...>, const Vector<size, U>& vector): _data{T(vector._data[sequence])...} {}
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/* Implementation for Vector<size, T>::Vector(U) */
|
||
|
13 years ago
|
template<std::size_t ...sequence> constexpr explicit Vector(Implementation::Sequence<sequence...>, T value): _data{Implementation::repeat(value, sequence)...} {}
|
||
|
13 years ago
|
|
||
|
13 years ago
|
T _data[size];
|
||
|
16 years ago
|
};
|
||
|
|
|
||
|
13 years ago
|
/** @relates Vector
|
||
|
|
@brief Multiply number with vector
|
||
|
|
|
||
|
13 years ago
|
Same as Vector::operator*(T) const.
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
template<std::size_t size, class T> inline Vector<size, T> operator*(
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
T
|
||
|
|
#else
|
||
|
|
typename std::common_type<T>::type
|
||
|
|
#endif
|
||
|
|
number, const Vector<size, T>& vector)
|
||
|
|
{
|
||
|
13 years ago
|
return vector*number;
|
||
|
14 years ago
|
}
|
||
|
13 years ago
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Divide vector with number and invert
|
||
|
|
|
||
|
|
@f[
|
||
|
|
\boldsymbol c_i = \frac b {\boldsymbol a_i}
|
||
|
|
@f]
|
||
|
13 years ago
|
@see Vector::operator/(T) const
|
||
|
13 years ago
|
*/
|
||
|
13 years ago
|
template<std::size_t size, class T> inline Vector<size, T> operator/(
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
T
|
||
|
|
#else
|
||
|
|
typename std::common_type<T>::type
|
||
|
|
#endif
|
||
|
|
number, const Vector<size, T>& vector)
|
||
|
|
{
|
||
|
13 years ago
|
Vector<size, T> out;
|
||
|
|
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
out[i] = number/vector[i];
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
14 years ago
|
|
||
|
13 years ago
|
/** @relates Vector
|
||
|
|
@brief Do modulo of integral vector and assign
|
||
|
|
|
||
|
|
The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator%=(Vector<size, Integral>& a, Integral b) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
a[i] %= b;
|
||
|
|
|
||
|
|
return a;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Modulo of integral vector
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator%(const Vector<size, Integral>& a, Integral b) {
|
||
|
|
Vector<size, Integral> copy(a);
|
||
|
|
return copy %= b;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Do modulo of two integral vectors and assign
|
||
|
|
|
||
|
|
The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator%=(Vector<size, Integral>& a, const Vector<size, Integral>& b) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
a[i] %= b[i];
|
||
|
|
|
||
|
|
return a;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Modulo of two integral vectors
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator%(const Vector<size, Integral>& a, const Vector<size, Integral>& b) {
|
||
|
|
Vector<size, Integral> copy(a);
|
||
|
|
return copy %= b;
|
||
|
|
}
|
||
|
|
|
||
|
13 years ago
|
/** @relates Vector
|
||
|
|
@brief Bitwise NOT of integral vector
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator~(const Vector<size, Integral>& vector) {
|
||
|
|
Vector<size, Integral> out;
|
||
|
|
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
out[i] = ~vector[i];
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Do bitwise AND of two integral vectors and assign
|
||
|
|
|
||
|
|
The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator&=(Vector<size, Integral>& a, const Vector<size, Integral>& b) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
a[i] &= b[i];
|
||
|
|
|
||
|
|
return a;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Bitwise AND of two integral vectors
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator&(const Vector<size, Integral>& a, const Vector<size, Integral>& b) {
|
||
|
|
Vector<size, Integral> copy(a);
|
||
|
|
return copy &= b;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Do bitwise OR of two integral vectors and assign
|
||
|
|
|
||
|
|
The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator|=(Vector<size, Integral>& a, const Vector<size, Integral>& b) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
a[i] |= b[i];
|
||
|
|
|
||
|
|
return a;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Bitwise OR of two integral vectors
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator|(const Vector<size, Integral>& a, const Vector<size, Integral>& b) {
|
||
|
|
Vector<size, Integral> copy(a);
|
||
|
|
return copy |= b;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Do bitwise XOR of two integral vectors and assign
|
||
|
|
|
||
|
|
The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator^=(Vector<size, Integral>& a, const Vector<size, Integral>& b) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
a[i] ^= b[i];
|
||
|
|
|
||
|
|
return a;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Bitwise XOR of two integral vectors
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator^(const Vector<size, Integral>& a, const Vector<size, Integral>& b) {
|
||
|
|
Vector<size, Integral> copy(a);
|
||
|
|
return copy ^= b;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Do bitwise left shift of integral vector and assign
|
||
|
|
|
||
|
|
The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator<<=(Vector<size, Integral>& vector,
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Integral
|
||
|
|
#else
|
||
|
|
typename std::common_type<Integral>::type
|
||
|
|
#endif
|
||
|
|
shift)
|
||
|
|
{
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
vector[i] <<= shift;
|
||
|
|
|
||
|
|
return vector;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Bitwise left shift of integral vector
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator<<(const Vector<size, Integral>& vector,
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Integral
|
||
|
|
#else
|
||
|
|
typename std::common_type<Integral>::type
|
||
|
|
#endif
|
||
|
|
shift)
|
||
|
|
{
|
||
|
|
Vector<size, Integral> copy(vector);
|
||
|
|
return copy <<= shift;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Do bitwise right shift of integral vector and assign
|
||
|
|
|
||
|
|
The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator>>=(Vector<size, Integral>& vector,
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Integral
|
||
|
|
#else
|
||
|
|
typename std::common_type<Integral>::type
|
||
|
|
#endif
|
||
|
|
shift) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
vector[i] >>= shift;
|
||
|
|
|
||
|
|
return vector;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Bitwise left shift of integral vector
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator>>(const Vector<size, Integral>& vector,
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Integral
|
||
|
|
#else
|
||
|
|
typename std::common_type<Integral>::type
|
||
|
|
#endif
|
||
|
|
shift) {
|
||
|
|
Vector<size, Integral> copy(vector);
|
||
|
|
return copy >>= shift;
|
||
|
|
}
|
||
|
|
|
||
|
13 years ago
|
/** @relates Vector
|
||
|
|
@brief Multiply integral vector with floating-point number and assign
|
||
|
|
|
||
|
|
Similar to Vector::operator*=(T), except that the multiplication is done in
|
||
|
|
floating-point. The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral, class FloatingPoint> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator*=(Vector<size, Integral>& vector, FloatingPoint number) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
13 years ago
|
vector[i] = Integral(vector[i]*number);
|
||
|
13 years ago
|
|
||
|
|
return vector;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Multiply integral vector with floating-point number
|
||
|
|
|
||
|
|
Similar to Vector::operator*(T) const, except that the multiplication is done
|
||
|
|
in floating-point.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral, class FloatingPoint> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator*(const Vector<size, Integral>& vector, FloatingPoint number) {
|
||
|
|
Vector<size, Integral> copy(vector);
|
||
|
|
return copy *= number;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Multiply floating-point number with integral vector
|
||
|
|
|
||
|
|
Same as operator*(const Vector<size, Integral>&, FloatingPoint).
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class FloatingPoint, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator*(FloatingPoint number, const Vector<size, Integral>& vector) {
|
||
|
|
return vector*number;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Divide integral vector with floating-point number and assign
|
||
|
|
|
||
|
|
Similar to Vector::operator/=(T), except that the division is done in
|
||
|
|
floating-point. The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral, class FloatingPoint> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator/=(Vector<size, Integral>& vector, FloatingPoint number) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
13 years ago
|
vector[i] = Integral(vector[i]/number);
|
||
|
13 years ago
|
|
||
|
|
return vector;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Divide integral vector with floating-point number
|
||
|
|
|
||
|
|
Similar to Vector::operator/(T) const, except that the division is done in
|
||
|
|
floating-point.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral, class FloatingPoint> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator/(const Vector<size, Integral>& vector, FloatingPoint number) {
|
||
|
|
Vector<size, Integral> copy(vector);
|
||
|
|
return copy /= number;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Multiply integral vector with floating-point vector component-wise and assign
|
||
|
|
|
||
|
|
Similar to Vector::operator*=(const Vector<size, T>&), except that the
|
||
|
|
multiplication is done in floating-point. The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral, class FloatingPoint> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator*=(Vector<size, Integral>& a, const Vector<size, FloatingPoint>& b) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
13 years ago
|
a[i] = Integral(a[i]*b[i]);
|
||
|
13 years ago
|
|
||
|
|
return a;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Multiply integral vector with floating-point vector component-wise
|
||
|
|
|
||
|
|
Similar to Vector::operator*(const Vector<size, T>&) const, except that the
|
||
|
|
multiplication is done in floating-point. The result is always integral vector,
|
||
|
|
convert both arguments to the same floating-point type to have floating-point
|
||
|
|
result.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral, class FloatingPoint> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator*(const Vector<size, Integral>& a, const Vector<size, FloatingPoint>& b) {
|
||
|
|
Vector<size, Integral> copy(a);
|
||
|
|
return copy *= b;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Multiply floating-point vector with integral vector component-wise
|
||
|
|
|
||
|
|
Same as operator*(const Vector<size, Integral>&, const Vector<size, FloatingPoint>&).
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class FloatingPoint, class Integral> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator*(const Vector<size, FloatingPoint>& a, const Vector<size, Integral>& b) {
|
||
|
|
return b*a;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Divide integral vector with floating-point vector component-wise and assign
|
||
|
|
|
||
|
|
Similar to Vector::operator/=(const Vector<size, T>&), except that the division
|
||
|
|
is done in floating-point. The computation is done in-place.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral, class FloatingPoint> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>&
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>&>::type
|
||
|
|
#endif
|
||
|
|
operator/=(Vector<size, Integral>& a, const Vector<size, FloatingPoint>& b) {
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
13 years ago
|
a[i] = Integral(a[i]/b[i]);
|
||
|
13 years ago
|
|
||
|
|
return a;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @relates Vector
|
||
|
|
@brief Divide integral vector with floating-point vector component-wise
|
||
|
|
|
||
|
|
Similar to Vector::operator/(const Vector<size, T>&) const, except that the
|
||
|
|
division is done in floating-point. The result is always integral vector,
|
||
|
|
convert both arguments to the same floating-point type to have floating-point
|
||
|
|
result.
|
||
|
|
*/
|
||
|
|
template<std::size_t size, class Integral, class FloatingPoint> inline
|
||
|
|
#ifdef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
Vector<size, Integral>
|
||
|
|
#else
|
||
|
|
typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Vector<size, Integral>>::type
|
||
|
|
#endif
|
||
|
|
operator/(const Vector<size, Integral>& a, const Vector<size, FloatingPoint>& b) {
|
||
|
|
Vector<size, Integral> copy(a);
|
||
|
|
return copy /= b;
|
||
|
|
}
|
||
|
|
|
||
|
14 years ago
|
/** @debugoperator{Magnum::Math::Vector} */
|
||
|
14 years ago
|
template<std::size_t size, class T> Corrade::Utility::Debug operator<<(Corrade::Utility::Debug debug, const Vector<size, T>& value) {
|
||
|
14 years ago
|
debug << "Vector(";
|
||
|
|
debug.setFlag(Corrade::Utility::Debug::SpaceAfterEachValue, false);
|
||
|
14 years ago
|
for(std::size_t i = 0; i != size; ++i) {
|
||
|
14 years ago
|
if(i != 0) debug << ", ";
|
||
|
14 years ago
|
debug << value[i];
|
||
|
14 years ago
|
}
|
||
|
14 years ago
|
debug << ")";
|
||
|
14 years ago
|
debug.setFlag(Corrade::Utility::Debug::SpaceAfterEachValue, true);
|
||
|
|
return debug;
|
||
|
|
}
|
||
|
|
|
||
|
14 years ago
|
/* Explicit instantiation for types used in OpenGL */
|
||
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT
|
||
|
13 years ago
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<2, Float>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<3, Float>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<4, Float>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<2, Int>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<3, Int>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<4, Int>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<2, UnsignedInt>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<3, UnsignedInt>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<4, UnsignedInt>&);
|
||
|
14 years ago
|
#ifndef MAGNUM_TARGET_GLES
|
||
|
13 years ago
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<2, Double>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<3, Double>&);
|
||
|
|
extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utility::Debug, const Vector<4, Double>&);
|
||
|
14 years ago
|
#endif
|
||
|
|
#endif
|
||
|
|
|
||
|
15 years ago
|
#ifndef DOXYGEN_GENERATING_OUTPUT
|
||
|
13 years ago
|
#define MAGNUM_VECTOR_SUBCLASS_IMPLEMENTATION(size, Type) \
|
||
|
13 years ago
|
static Type<T>& from(T* data) { \
|
||
|
14 years ago
|
return *reinterpret_cast<Type<T>*>(data); \
|
||
|
|
} \
|
||
|
13 years ago
|
static const Type<T>& from(const T* data) { \
|
||
|
14 years ago
|
return *reinterpret_cast<const Type<T>*>(data); \
|
||
|
|
} \
|
||
|
|
\
|
||
|
13 years ago
|
Type<T>& operator=(const Type<T>& other) { \
|
||
|
14 years ago
|
Math::Vector<size, T>::operator=(other); \
|
||
|
14 years ago
|
return *this; \
|
||
|
|
} \
|
||
|
|
\
|
||
|
13 years ago
|
Type<T> operator-() const { \
|
||
|
13 years ago
|
return Math::Vector<size, T>::operator-(); \
|
||
|
14 years ago
|
} \
|
||
|
13 years ago
|
Type<T>& operator+=(const Math::Vector<size, T>& other) { \
|
||
|
13 years ago
|
Math::Vector<size, T>::operator+=(other); \
|
||
|
|
return *this; \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T> operator+(const Math::Vector<size, T>& other) const { \
|
||
|
13 years ago
|
return Math::Vector<size, T>::operator+(other); \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T>& operator-=(const Math::Vector<size, T>& other) { \
|
||
|
13 years ago
|
Math::Vector<size, T>::operator-=(other); \
|
||
|
|
return *this; \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T> operator-(const Math::Vector<size, T>& other) const { \
|
||
|
13 years ago
|
return Math::Vector<size, T>::operator-(other); \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T>& operator*=(T number) { \
|
||
|
13 years ago
|
Math::Vector<size, T>::operator*=(number); \
|
||
|
|
return *this; \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T> operator*(T number) const { \
|
||
|
13 years ago
|
return Math::Vector<size, T>::operator*(number); \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T>& operator/=(T number) { \
|
||
|
13 years ago
|
Math::Vector<size, T>::operator/=(number); \
|
||
|
|
return *this; \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T> operator/(T number) const { \
|
||
|
13 years ago
|
return Math::Vector<size, T>::operator/(number); \
|
||
|
14 years ago
|
} \
|
||
|
13 years ago
|
Type<T>& operator*=(const Math::Vector<size, T>& other) { \
|
||
|
14 years ago
|
Math::Vector<size, T>::operator*=(other); \
|
||
|
14 years ago
|
return *this; \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T> operator*(const Math::Vector<size, T>& other) const { \
|
||
|
13 years ago
|
return Math::Vector<size, T>::operator*(other); \
|
||
|
14 years ago
|
} \
|
||
|
13 years ago
|
Type<T>& operator/=(const Math::Vector<size, T>& other) { \
|
||
|
14 years ago
|
Math::Vector<size, T>::operator/=(other); \
|
||
|
14 years ago
|
return *this; \
|
||
|
13 years ago
|
} \
|
||
|
13 years ago
|
Type<T> operator/(const Math::Vector<size, T>& other) const { \
|
||
|
13 years ago
|
return Math::Vector<size, T>::operator/(other); \
|
||
|
14 years ago
|
} \
|
||
|
|
\
|
||
|
13 years ago
|
Type<T> normalized() const { \
|
||
|
13 years ago
|
return Math::Vector<size, T>::normalized(); \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T> resized(T length) const { \
|
||
|
13 years ago
|
return Math::Vector<size, T>::resized(length); \
|
||
|
|
} \
|
||
|
13 years ago
|
Type<T> projected(const Math::Vector<size, T>& other) const { \
|
||
|
14 years ago
|
return Math::Vector<size, T>::projected(other); \
|
||
|
13 years ago
|
} \
|
||
|
|
Type<T> projectedOntoNormalized(const Math::Vector<size, T>& other) const { \
|
||
|
|
return Math::Vector<size, T>::projectedOntoNormalized(other); \
|
||
|
14 years ago
|
}
|
||
|
14 years ago
|
|
||
|
13 years ago
|
#define MAGNUM_VECTORn_OPERATOR_IMPLEMENTATION(size, Type) \
|
||
|
|
template<class T> inline Type<T> operator*(typename std::common_type<T>::type number, const Type<T>& vector) { \
|
||
|
13 years ago
|
return number*static_cast<const Math::Vector<size, T>&>(vector); \
|
||
|
13 years ago
|
} \
|
||
|
|
template<class T> inline Type<T> operator/(typename std::common_type<T>::type number, const Type<T>& vector) { \
|
||
|
13 years ago
|
return number/static_cast<const Math::Vector<size, T>&>(vector); \
|
||
|
13 years ago
|
} \
|
||
|
|
\
|
||
|
13 years ago
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>&>::type operator%=(Type<Integral>& a, Integral b) { \
|
||
|
|
static_cast<Math::Vector<size, Integral>&>(a) %= b; \
|
||
|
|
return a; \
|
||
|
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>>::type operator%(const Type<Integral>& a, Integral b) { \
|
||
|
|
return static_cast<const Math::Vector<size, Integral>&>(a) % b; \
|
||
|
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>&>::type operator%=(Type<Integral>& a, const Math::Vector<size, Integral>& b) { \
|
||
|
|
static_cast<Math::Vector<size, Integral>&>(a) %= b; \
|
||
|
|
return a; \
|
||
|
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>>::type operator%(const Type<Integral>& a, const Math::Vector<size, Integral>& b) { \
|
||
|
|
return static_cast<const Math::Vector<size, Integral>&>(a) % b; \
|
||
|
|
} \
|
||
|
|
\
|
||
|
13 years ago
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>>::type operator~(const Type<Integral>& vector) { \
|
||
|
13 years ago
|
return ~static_cast<const Math::Vector<size, Integral>&>(vector); \
|
||
|
13 years ago
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>&>::type operator&=(Type<Integral>& a, const Math::Vector<size, Integral>& b) { \
|
||
|
13 years ago
|
static_cast<Math::Vector<size, Integral>&>(a) &= b; \
|
||
|
13 years ago
|
return a; \
|
||
|
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>>::type operator&(const Type<Integral>& a, const Math::Vector<size, Integral>& b) { \
|
||
|
13 years ago
|
return static_cast<const Math::Vector<size, Integral>&>(a) & b; \
|
||
|
13 years ago
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>&>::type operator|=(Type<Integral>& a, const Math::Vector<size, Integral>& b) { \
|
||
|
13 years ago
|
static_cast<Math::Vector<size, Integral>&>(a) |= b; \
|
||
|
13 years ago
|
return a; \
|
||
|
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>>::type operator|(const Type<Integral>& a, const Math::Vector<size, Integral>& b) { \
|
||
|
13 years ago
|
return static_cast<const Math::Vector<size, Integral>&>(a) | b; \
|
||
|
13 years ago
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>&>::type operator^=(Type<Integral>& a, const Math::Vector<size, Integral>& b) { \
|
||
|
13 years ago
|
static_cast<Math::Vector<size, Integral>&>(a) ^= b; \
|
||
|
13 years ago
|
return a; \
|
||
|
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>>::type operator^(const Type<Integral>& a, const Math::Vector<size, Integral>& b) { \
|
||
|
13 years ago
|
return static_cast<const Math::Vector<size, Integral>&>(a) ^ b; \
|
||
|
13 years ago
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>&>::type operator<<=(Type<Integral>& vector, typename std::common_type<Integral>::type shift) { \
|
||
|
13 years ago
|
static_cast<Math::Vector<size, Integral>&>(vector) <<= shift; \
|
||
|
13 years ago
|
return vector; \
|
||
|
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>>::type operator<<(const Type<Integral>& vector, typename std::common_type<Integral>::type shift) { \
|
||
|
|
return static_cast<const Math::Vector<size, Integral>&>(vector) << shift; \
|
||
|
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>&>::type operator>>=(Type<Integral>& vector, typename std::common_type<Integral>::type shift) { \
|
||
|
13 years ago
|
static_cast<Math::Vector<size, Integral>&>(vector) >>= shift; \
|
||
|
13 years ago
|
return vector; \
|
||
|
|
} \
|
||
|
|
template<class Integral> inline typename std::enable_if<std::is_integral<Integral>::value, Type<Integral>>::type operator>>(const Type<Integral>& vector, typename std::common_type<Integral>::type shift) { \
|
||
|
|
return static_cast<const Math::Vector<size, Integral>&>(vector) >> shift; \
|
||
|
|
} \
|
||
|
13 years ago
|
template<class Integral, class FloatingPoint> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>&>::type operator*=(Type<Integral>& vector, FloatingPoint number) { \
|
||
|
13 years ago
|
static_cast<Math::Vector<size, Integral>&>(vector) *= number; \
|
||
|
13 years ago
|
return vector; \
|
||
|
|
} \
|
||
|
|
template<class Integral, class FloatingPoint> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>>::type operator*(const Type<Integral>& vector, FloatingPoint number) { \
|
||
|
13 years ago
|
return static_cast<const Math::Vector<size, Integral>&>(vector)*number; \
|
||
|
13 years ago
|
} \
|
||
|
|
template<class FloatingPoint, class Integral> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>>::type operator*(FloatingPoint number, const Type<Integral>& vector) { \
|
||
|
13 years ago
|
return number*static_cast<const Math::Vector<size, Integral>&>(vector); \
|
||
|
13 years ago
|
} \
|
||
|
|
template<class Integral, class FloatingPoint> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>&>::type operator/=(Type<Integral>& vector, FloatingPoint number) { \
|
||
|
13 years ago
|
static_cast<Math::Vector<size, Integral>&>(vector) /= number; \
|
||
|
13 years ago
|
return vector; \
|
||
|
|
} \
|
||
|
|
template<class Integral, class FloatingPoint> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>>::type operator/(const Type<Integral>& vector, FloatingPoint number) { \
|
||
|
13 years ago
|
return static_cast<const Math::Vector<size, Integral>&>(vector)/number; \
|
||
|
13 years ago
|
} \
|
||
|
|
\
|
||
|
|
template<class Integral, class FloatingPoint> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>&>::type operator*=(Type<Integral>& a, const Math::Vector<size, FloatingPoint>& b) { \
|
||
|
13 years ago
|
static_cast<Math::Vector<size, Integral>&>(a) *= b; \
|
||
|
13 years ago
|
return a; \
|
||
|
|
} \
|
||
|
|
template<class Integral, class FloatingPoint> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>>::type operator*(const Type<Integral>& a, const Math::Vector<size, FloatingPoint>& b) { \
|
||
|
13 years ago
|
return static_cast<const Math::Vector<size, Integral>&>(a)*b; \
|
||
|
13 years ago
|
} \
|
||
|
|
template<class FloatingPoint, class Integral> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>>::type operator*(const Math::Vector<size, FloatingPoint>& a, const Type<Integral>& b) { \
|
||
|
13 years ago
|
return a*static_cast<const Math::Vector<size, Integral>&>(b); \
|
||
|
13 years ago
|
} \
|
||
|
|
template<class Integral, class FloatingPoint> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>&>::type operator/=(Type<Integral>& a, const Math::Vector<size, FloatingPoint>& b) { \
|
||
|
13 years ago
|
static_cast<Math::Vector<size, Integral>&>(a) /= b; \
|
||
|
13 years ago
|
return a; \
|
||
|
14 years ago
|
} \
|
||
|
13 years ago
|
template<class Integral, class FloatingPoint> inline typename std::enable_if<std::is_integral<Integral>::value && std::is_floating_point<FloatingPoint>::value, Type<Integral>>::type operator/(const Type<Integral>& a, const Math::Vector<size, FloatingPoint>& b) { \
|
||
|
13 years ago
|
return static_cast<const Math::Vector<size, Integral>&>(a)/b; \
|
||
|
14 years ago
|
}
|
||
|
15 years ago
|
#endif
|
||
|
|
|
||
|
13 years ago
|
template<std::size_t size, class T> inline Rad<T> Vector<size, T>::angle(const Vector<size, T>& normalizedA, const Vector<size, T>& normalizedB) {
|
||
|
|
CORRADE_ASSERT(normalizedA.isNormalized() && normalizedB.isNormalized(),
|
||
|
|
"Math::Vector::angle(): vectors must be normalized", Rad<T>(std::numeric_limits<T>::quiet_NaN()));
|
||
|
|
return Rad<T>(std::acos(dot(normalizedA, normalizedB)));
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline BoolVector<size> Vector<size, T>::operator<(const Vector<size, T>& other) const {
|
||
|
|
BoolVector<size> out;
|
||
|
|
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
out.set(i, _data[i] < other._data[i]);
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline BoolVector<size> Vector<size, T>::operator<=(const Vector<size, T>& other) const {
|
||
|
|
BoolVector<size> out;
|
||
|
|
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
out.set(i, _data[i] <= other._data[i]);
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline BoolVector<size> Vector<size, T>::operator>=(const Vector<size, T>& other) const {
|
||
|
|
BoolVector<size> out;
|
||
|
|
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
out.set(i, _data[i] >= other._data[i]);
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline BoolVector<size> Vector<size, T>::operator>(const Vector<size, T>& other) const {
|
||
|
|
BoolVector<size> out;
|
||
|
|
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
out.set(i, _data[i] > other._data[i]);
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline Vector<size, T> Vector<size, T>::operator-() const {
|
||
|
|
Vector<size, T> out;
|
||
|
|
|
||
|
|
for(std::size_t i = 0; i != size; ++i)
|
||
|
|
out._data[i] = -_data[i];
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline Vector<size, T> Vector<size, T>::projectedOntoNormalized(const Vector<size, T>& line) const {
|
||
|
|
CORRADE_ASSERT(line.isNormalized(), "Math::Vector::projectedOntoNormalized(): line must be normalized",
|
||
|
|
(Vector<size, T>(std::numeric_limits<T>::quiet_NaN())));
|
||
|
|
return line*dot(*this, line);
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline T Vector<size, T>::sum() const {
|
||
|
|
T out(_data[0]);
|
||
|
|
|
||
|
|
for(std::size_t i = 1; i != size; ++i)
|
||
|
|
out += _data[i];
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline T Vector<size, T>::product() const {
|
||
|
|
T out(_data[0]);
|
||
|
|
|
||
|
|
for(std::size_t i = 1; i != size; ++i)
|
||
|
|
out *= _data[i];
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline T Vector<size, T>::min() const {
|
||
|
|
T out(_data[0]);
|
||
|
|
|
||
|
|
for(std::size_t i = 1; i != size; ++i)
|
||
|
|
out = std::min(out, _data[i]);
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
template<std::size_t size, class T> inline T Vector<size, T>::max() const {
|
||
|
|
T out(_data[0]);
|
||
|
|
|
||
|
|
for(std::size_t i = 1; i != size; ++i)
|
||
|
|
out = std::max(out, _data[i]);
|
||
|
|
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
16 years ago
|
}}
|
||
|
16 years ago
|
|
||
|
14 years ago
|
namespace Corrade { namespace Utility {
|
||
|
|
|
||
|
13 years ago
|
/** @configurationvalue{Magnum::Math::RectangularMatrix} */
|
||
|
|
template<std::size_t size, class T> struct ConfigurationValue<Magnum::Math::Vector<size, T>> {
|
||
|
|
ConfigurationValue() = delete;
|
||
|
|
|
||
|
|
/** @brief Writes elements separated with spaces */
|
||
|
|
static std::string toString(const Magnum::Math::Vector<size, T>& value, ConfigurationValueFlags flags) {
|
||
|
|
std::string output;
|
||
|
|
|
||
|
|
for(std::size_t i = 0; i != size; ++i) {
|
||
|
|
if(!output.empty()) output += ' ';
|
||
|
|
output += ConfigurationValue<T>::toString(value[i], flags);
|
||
|
|
}
|
||
|
|
|
||
|
|
return output;
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @brief Reads elements separated with whitespace */
|
||
|
|
static Magnum::Math::Vector<size, T> fromString(const std::string& stringValue, ConfigurationValueFlags flags) {
|
||
|
|
Magnum::Math::Vector<size, T> result;
|
||
|
|
|
||
|
|
std::size_t oldpos = 0, pos = std::string::npos, i = 0;
|
||
|
|
do {
|
||
|
|
pos = stringValue.find(' ', oldpos);
|
||
|
|
std::string part = stringValue.substr(oldpos, pos-oldpos);
|
||
|
|
|
||
|
|
if(!part.empty()) {
|
||
|
|
result[i] = ConfigurationValue<T>::fromString(part, flags);
|
||
|
|
++i;
|
||
|
|
}
|
||
|
|
|
||
|
|
oldpos = pos+1;
|
||
|
|
} while(pos != std::string::npos);
|
||
|
|
|
||
|
|
return result;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
#ifndef DOXYGEN_GENERATING_OUTPUT
|
||
|
|
/* Vectors */
|
||
|
13 years ago
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<2, Magnum::Float>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<3, Magnum::Float>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<4, Magnum::Float>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<2, Magnum::Int>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<3, Magnum::Int>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<4, Magnum::Int>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<2, Magnum::UnsignedInt>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<3, Magnum::UnsignedInt>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<4, Magnum::UnsignedInt>>;
|
||
|
13 years ago
|
#ifndef MAGNUM_TARGET_GLES
|
||
|
13 years ago
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<2, Magnum::Double>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<3, Magnum::Double>>;
|
||
|
|
extern template struct MAGNUM_EXPORT ConfigurationValue<Magnum::Math::Vector<4, Magnum::Double>>;
|
||
|
13 years ago
|
#endif
|
||
|
|
#endif
|
||
|
14 years ago
|
|
||
|
|
}}
|
||
|
|
|
||
|
16 years ago
|
#endif
|