TIntVector2 setup.

This commit is contained in:
scorpioblood 2024-06-05 21:41:43 +02:00
parent 45a167564d
commit c3f17c817d
5 changed files with 843 additions and 211 deletions

View File

@ -0,0 +1,279 @@
#pragma once
#include "Core/public/Math/Boilerplate.h"
namespace Phanes::Core::Math::Detail
{
template<IntType T, bool S>
struct construct_ivec2 {};
template<IntType T, bool S>
struct compute_ivec2_add {};
template<IntType T, bool S>
struct compute_ivec2_sub {};
template<IntType T, bool S>
struct compute_ivec2_mul {};
template<IntType T, bool S>
struct compute_ivec2_div {};
template<IntType T, bool S>
struct compute_ivec2_mod {};
template<IntType T, bool S>
struct compute_ivec2_eq {};
template<IntType T, bool S>
struct compute_ivec2_ieq {};
template<IntType T, bool S>
struct compute_ivec2_inc {};
template<IntType T, bool S>
struct compute_ivec2_dec {};
template<IntType T, bool S>
struct compute_ivec2_and {};
template<IntType T, bool S>
struct compute_ivec2_or {};
template<IntType T, bool S>
struct compute_ivec2_xor {};
template<IntType T, bool S>
struct compute_ivec2_left_shift {};
template<IntType T, bool S>
struct compute_ivec2_right_shift {};
template<IntType T, bool S>
struct compute_ivec2_bnot {};
template<IntType T>
struct construct_ivec2<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{
v1.x = v2.x;
v1.y = v2.y;
}
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& v1, T s)
{
v1.x = s;
v1.y = s;
}
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& v1, T x, T y)
{
v1.x = x;
v1.y = y;
}
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& v1, const T* comp)
{
v1.x = comp[0];
v1.y = comp[1];
}
};
template<IntType T>
struct compute_ivec2_add<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x + v2.x;
r.y = v1.y + v2.y;
}
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, T s)
{
r.x = v1.x + s;
r.y = v1.y + s;
}
};
template<IntType T>
struct compute_ivec2_sub<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x - v2.x;
r.y = v1.y - v2.y;
}
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, T s)
{
r.x = v1.x - s;
r.y = v1.y - s;
}
};
template<IntType T>
struct compute_ivec2_mul<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x * v2.x;
r.y = v1.y * v2.y;
}
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, T s)
{
r.x = v1.x * s;
r.y = v1.y * s;
}
};
template<IntType T>
struct compute_ivec2_div<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x / v2.x;
r.y = v1.y / v2.y;
}
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, T s)
{
s = (T)1.0 / s;
r.x = v1.x * s;
r.y = v1.y * s;
}
};
template<IntType T, bool S>
struct compute_ivec2_mod
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x % v2.x;
r.y = v1.y % v2.y;
}
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, T s)
{
r.x = v1.x % s;
r.y = v1.y % s;
}
};
template<IntType T>
struct compute_ivec2_eq<T, false>
{
static constexpr bool map(const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
return (Phanes::Core::Math::Abs(v1.x - v2.x) < P_FLT_INAC &&
Phanes::Core::Math::Abs(v1.y - v2.y) < P_FLT_INAC);
}
};
template<IntType T>
struct compute_ivec2_ieq<T, false>
{
static constexpr bool map(const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
return (Phanes::Core::Math::Abs(v1.x - v2.x) > P_FLT_INAC ||
Phanes::Core::Math::Abs(v1.y - v2.y) > P_FLT_INAC);
}
};
template<IntType T>
struct compute_ivec2_inc<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1)
{
r.x = v1.x + 1;
r.y = v1.y + 1;
}
};
template<IntType T>
struct compute_ivec2_dec<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1)
{
r.x = v1.x - 1;
r.y = v1.y - 1;
}
};
template<IntType T>
struct compute_ivec2_and<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x & v2.x;
r.y = v1.y & v2.y;
}
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, T s)
{
r.x = v1.x & s;
r.y = v1.y & s;
}
};
template<IntType T>
struct compute_ivec2_or<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x | v2.x;
r.y = v1.y | v2.y;
}
};
template<IntType T>
struct compute_ivec2_xor<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x ^ v2.x;
r.y = v1.y ^ v2.y;
}
};
template<IntType T>
struct compute_ivec2_left_shift<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x << v2.x;
r.y = v1.y << v2.y;
}
};
template<IntType T>
struct compute_ivec2_right_shift<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1, const Phanes::Core::Math::TIntVector2<T, false>& v2)
{
r.x = v1.x >> v2.x;
r.y = v1.y >> v2.y;
}
};
template<IntType T>
struct compute_ivec2_bnot<T, false>
{
static constexpr void map(Phanes::Core::Math::TIntVector2<T, false>& r, const Phanes::Core::Math::TIntVector2<T, false>& v1)
{
r.x = ~v1.x;
r.y = ~v1.y;
}
};
}

View File

@ -3,9 +3,10 @@
#include "Core/public/Math/Boilerplate.h" #include "Core/public/Math/Boilerplate.h"
#include "Core/public/Math/MathCommon.hpp" #include "Core/public/Math/MathCommon.hpp"
#include "Core/public/Math/MathAbstractTypes.h"
#include "Core/public/Math/MathFwd.h" #include "Core/public/Math/MathFwd.h"
#include "Core/public/Math/SIMD/Storage.h"
#ifndef P_DEBUG #ifndef P_DEBUG
#pragma warning(disable : 4244) #pragma warning(disable : 4244)
#endif #endif
@ -32,7 +33,7 @@ namespace Phanes::Core::Math {
* A 2D Vector with components x and y with integer precision. * A 2D Vector with components x and y with integer precision.
*/ */
template<IntType T> template<IntType T, bool A>
struct TIntVector2 { struct TIntVector2 {
static_assert(std::is_integral_v<T>, "T must be an integer type."); static_assert(std::is_integral_v<T>, "T must be an integer type.");
@ -70,7 +71,11 @@ namespace Phanes::Core::Math {
* @note Components are split into x and y. Access and manipulation is possible by these variables. * @note Components are split into x and y. Access and manipulation is possible by these variables.
*/ */
T comp[2]; union
{
typename SIMD::Storage<2, T, SIMD::use_simd<T, 2, A>::value>::type comp;
typename SIMD::Storage<2, T, SIMD::use_simd<T, 2, A>::value>::type data;
};
}; };
@ -89,27 +94,7 @@ namespace Phanes::Core::Math {
* Copy constructor * Copy constructor
*/ */
TIntVector2(const TIntVector2<T>& v) TIntVector2(const TIntVector2<T, A>& v);
{
memcpy(this->comp, comp, sizeof(T) * 2);
}
/**
* Move constructor
*/
TIntVector2(TIntVector2<T>&& v)
{
this->comp = v.comp;
v.comp = nullptr;
}
/**
* Convert other type of vector
*/
template<IntType OtherIntType>
explicit TIntVector2(const TIntVector2<OtherIntType>& v) : x((T)v.x), y((T)v.y) {};
/** /**
* Construct Vector from xy components. * Construct Vector from xy components.
@ -118,11 +103,7 @@ namespace Phanes::Core::Math {
* @param y Y component * @param y Y component
*/ */
TIntVector2(const T x, const T y) TIntVector2(const T x, const T y);
{
this->x = x;
this->y = y;
}
/** /**
* Construct Vector from two component array. * Construct Vector from two component array.
@ -130,10 +111,7 @@ namespace Phanes::Core::Math {
* @param comp Array of components * @param comp Array of components
*/ */
TIntVector2(const T* comp) TIntVector2(const T* comp);
{
memcpy(this->comp, comp, sizeof(T) * 2);
}
/** /**
* Construct Vector from 3D integer Vector's xy. * Construct Vector from 3D integer Vector's xy.
@ -141,110 +119,65 @@ namespace Phanes::Core::Math {
* @param v 3D IntVector to copy from * @param v 3D IntVector to copy from
*/ */
TIntVector2(const TIntVector3<T>& v) TIntVector2(const T s);
{
this->x = v.x;
this->y = v.y;
}
/**
* Constructs a vector pointing from start to end.
*
* @param(start) Startingpoint
* @param(end) Endpoint
*/
TIntVector2(const TIntPoint2<T>& start, const TIntPoint2<T>& end)
{
this->x = end.x - start.x;
this->y = end.y - start.y;
}
}; };
// ======================== // // ======================== //
// IntVector2 operators // // IntVector2 operators //
// ======================== // // ======================== //
/** /**
* Addition operation on same TIntVector2<T> (this) by a floating point value. * Addition operation on same TIntVector2<T, A> (this) by a floating point value.
* *
* @param(v1) Vector to add to * @param(v1) Vector to add to
* @param(s) Floating point to add * @param(s) Floating point to add
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator+= (TIntVector2<T>& v1, T s) TIntVector2<T, A> operator+= (TIntVector2<T, A>& v1, T s);
{
v1.x += s;
v1.y += s;
return v1;
}
/** /**
* Addition operation on same TIntVector2<T> (this) by a another TIntVector2<T>. * Addition operation on same TIntVector2<T, A> (this) by a another TIntVector2<T, A>.
* *
* @param(v1) Vector to add to * @param(v1) Vector to add to
* @param(v2) Vector to add * @param(v2) Vector to add
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator+= (TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, A> operator+= (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
{
v1.x += v2.x;
v1.y += v2.y;
return v1;
}
/** /**
* Substraction operation on same TIntVector2<T> (this) by a floating point. * Substraction operation on same TIntVector2<T, A> (this) by a floating point.
* *
* @param(v1) Vector to substract from * @param(v1) Vector to substract from
* @param(v2) Floating point to substract * @param(v2) Floating point to substract
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator-= (TIntVector2<T>& v1, T s) TIntVector2<T, A> operator-= (TIntVector2<T, A>& v1, T s);
{
v1.x -= s;
v1.y -= s;
return v1;
}
/** /**
* Substraction operation on same TIntVector2<T> (this) by a another TIntVector2<T>. * Substraction operation on same TIntVector2<T, A> (this) by a another TIntVector2<T, A>.
* *
* @param(v1) Vector to substract from * @param(v1) Vector to substract from
* @param(v2) Vector to substract * @param(v2) Vector to substract
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator-= (TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, A> operator-= (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
{
v1.x -= v2.x;
v1.y -= v2.y;
return v1;
}
/** /**
* Multiplication of TIntVector2<T> (this) with a floating point. * Multiplication of TIntVector2<T, A> (this) with a floating point.
* *
* @param(v1) Vector to multiply with * @param(v1) Vector to multiply with
* @param(s Floating point to multiply with * @param(s Floating point to multiply with
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator*= (TIntVector2<T>& v1, T s) TIntVector2<T, A> operator*= (TIntVector2<T, A>& v1, T s);
{
v1.x *= s;
v1.y *= s;
return v1;
}
/** /**
* Devision of Vector * Devision of Vector
@ -255,16 +188,8 @@ namespace Phanes::Core::Math {
* @note Result is rounded (obviously) * @note Result is rounded (obviously)
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator/= (TIntVector2<T>& v1, T s) TIntVector2<T, A> operator/= (TIntVector2<T, A>& v1, T s);
{
float _1_s = 1.0f;
v1.x *= _1_s;
v1.y *= _1_s;
return v1;
}
/** /**
* Stores the remainder of division by a scalar. * Stores the remainder of division by a scalar.
@ -273,17 +198,44 @@ namespace Phanes::Core::Math {
* @param(s) Scalar to divide with * @param(s) Scalar to divide with
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator%= (TIntVector2<T>& v1, T s) TIntVector2<T, A> operator%= (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
{
v1.x %= s;
v1.y %= s;
return v1; template<IntType T, bool A>
} TIntVector2<T, A> operator%= (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator&= (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator&= (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator|= (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator|= (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator^= (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator^= (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator<<= (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator<<= (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator>>= (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator>>= (TIntVector2<T, A>& v1, T s);
/** /**
* Scale of Vector by floating point. (> Creates a new TIntVector2<T>) * Scale of Vector by floating point. (> Creates a new TIntVector2<T, A>)
* *
* @param(v1) Vector to multiply with * @param(v1) Vector to multiply with
* @param(s Floating point to multiply with * @param(s Floating point to multiply with
@ -291,14 +243,11 @@ namespace Phanes::Core::Math {
* @return Result Vector * @return Result Vector
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator* (const TIntVector2<T>& v1, T s) TIntVector2<T, A> operator* (const TIntVector2<T, A>& v1, T s);
{
return TIntVector2<T>(v1.x * s, v1.y * s);
}
/** /**
* Division of Vector by floating point. (> Creates another TIntVector2<T>) * Division of Vector by floating point. (> Creates another TIntVector2<T, A>)
* *
* @see [FUNC]DivideFloat * @see [FUNC]DivideFloat
* *
@ -309,15 +258,11 @@ namespace Phanes::Core::Math {
* @note Deleted, because the returntype might not implicitly be obvious, when using in code or reading. * @note Deleted, because the returntype might not implicitly be obvious, when using in code or reading.
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator/ (const TIntVector2<T>& v1, T s) TIntVector2<T, A> operator/ (const TIntVector2<T, A>& v1, T s);
{
float _1_s = 1.0f;
return TIntVector2<T>(v1.x * _1_s, v1.y * _1_s);
}
/** /**
* Scale of Vector by floating point. (> Creates a new TIntVector2<T>) * Scale of Vector by floating point. (> Creates a new TIntVector2<T, A>)
* *
* @param(v1) Vector to multiply with * @param(v1) Vector to multiply with
* @param(s Floating point to multiply with * @param(s Floating point to multiply with
@ -325,11 +270,8 @@ namespace Phanes::Core::Math {
* @return Result Vector * @return Result Vector
*/ */
template<IntType T> template<IntType T, bool A>
FORCEINLINE TIntVector2<T> operator* (T s, const TIntVector2<T>& v1) FORCEINLINE TIntVector2<T, A> operator* (T s, const TIntVector2<T, A>& v1) { return v1 * s; };
{
return v1 * s;
}
/** /**
* Division of Vector by floating point. (> For convenience not arithmethicaly correct. Works like overloaded counterpart.) * Division of Vector by floating point. (> For convenience not arithmethicaly correct. Works like overloaded counterpart.)
@ -344,11 +286,8 @@ namespace Phanes::Core::Math {
* @note Deleted, because the returntype might not implicitly be obvious, when using in code or reading. * @note Deleted, because the returntype might not implicitly be obvious, when using in code or reading.
*/ */
template<IntType T> template<IntType T, bool A>
FORCEINLINE TIntVector2<T> operator/ (T s, const TIntVector2<T>& v1) FORCEINLINE TIntVector2<T, A> operator/ (T s, const TIntVector2<T, A>& v1) { return v1 / s; };
{
return v1 / s;
}
/** /**
* Dot product between two Vectors. * Dot product between two Vectors.
@ -361,11 +300,8 @@ namespace Phanes::Core::Math {
* @result Dot product * @result Dot product
*/ */
template<IntType T> template<IntType T, bool A>
T operator* (const TIntVector2<T>& v1, const TIntVector2<T>& v2) T operator* (const TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
{
return v1.x * v2.x + v1.y * v2.y;
}
/** /**
* Componentwise addition of Vector with floating point. * Componentwise addition of Vector with floating point.
@ -376,11 +312,8 @@ namespace Phanes::Core::Math {
* @return Result Vector * @return Result Vector
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator+ (const TIntVector2<T>& v1, T s) TIntVector2<T, A> operator+ (const TIntVector2<T, A>& v1, T s);
{
return TIntVector2<T>(v1.x + s, v1.y + s);
}
/** /**
* Componentwise addition of Vector with floating point. * Componentwise addition of Vector with floating point.
@ -391,11 +324,8 @@ namespace Phanes::Core::Math {
* @return Result Vector * @return Result Vector
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator+ (const TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, A> operator+ (const TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
{
return TIntVector2<T>(v1.x + v2.x, v1.y + v2.y);
}
/** /**
* Componentwise substraction of Vector with floating point. * Componentwise substraction of Vector with floating point.
@ -406,11 +336,8 @@ namespace Phanes::Core::Math {
* @return Result Vector * @return Result Vector
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator- (const TIntVector2<T>& v1, T s) TIntVector2<T, A> operator- (const TIntVector2<T, A>& v1, T s);
{
return TIntVector2<T>(v1.x - s, v1.y - s);
}
/** /**
* Componentwise substraction of Vector with Vector. * Componentwise substraction of Vector with Vector.
@ -421,14 +348,14 @@ namespace Phanes::Core::Math {
* @return Result Vector * @return Result Vector
*/ */
template<IntType T> template<IntType T, bool A>
TIntVector2<T> operator- (const TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, A> operator- (const TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
{
return TIntVector2<T>(v1.x - v2.x, v1.y - v2.y);
}
/** /**
* Scale of Vector by floating point. (> Creates a new TIntVector2<T>) * Scale of Vector by floating point. (> Creates a new TIntVector2<T, A>)
* *
* @param(v1) Vector to multiply with * @param(v1) Vector to multiply with
* @param(s Floating point to multiply with * @param(s Floating point to multiply with
@ -436,24 +363,47 @@ namespace Phanes::Core::Math {
* @return Result Vector * @return Result Vector
*/ */
template<IntType T> template<IntType T, bool A>
FORCEINLINE TIntVector2<T> operator% (const TIntVector2<T>& v1, T s) FORCEINLINE TIntVector2<T, A> operator% (const TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
{
return TIntVector2<T>(v1.x % s, v1.y % s);
}
/** template<IntType T, bool A>
* Negate Vector. FORCEINLINE TIntVector2<T, A> operator% (const TIntVector2<T, A>& v1, T s);
*
* @param(v1) Vector to negate
*/
template<IntType T, bool A>
inline TIntVector2<T, A> operator& (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator& (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator| (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator| (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator^ (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator^ (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator<< (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator<< (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator>> (TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
template<IntType T, bool A>
inline TIntVector2<T, A> operator>> (TIntVector2<T, A>& v1, T s);
template<IntType T, bool A>
inline TIntVector2<T, A> operator~ (TIntVector2<T, A>& v1);
template<IntType T>
void operator- (TIntVector2<T>& v1)
{
v1.x = -v1.x;
v1.y = -v1.y;
}
/** /**
* Compare Vector for equality. * Compare Vector for equality.
@ -465,11 +415,8 @@ namespace Phanes::Core::Math {
* @return true if equal, false if inequal * @return true if equal, false if inequal
*/ */
template<IntType T> template<IntType T, bool A>
bool operator== (const TIntVector2<T>& v1, const TIntVector2<T>& v2) bool operator== (const TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
{
return (abs(v1.x - v1.x) < P_FLT_INAC && abs(v1.y - v1.y) < P_FLT_INAC);
}
/** /**
@ -482,18 +429,15 @@ namespace Phanes::Core::Math {
* @return true if inequal, false if equal * @return true if inequal, false if equal
*/ */
template<IntType T> template<IntType T, bool A>
bool operator!= (const TIntVector2<T>& v1, const TIntVector2<T>& v2) bool operator!= (const TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2);
{
return (abs(v1.x - v1.x) > P_FLT_INAC || abs(v1.y - v1.y) > P_FLT_INAC);
}
// ============================================== // // ============================================== //
// TIntVector2 static function implementation // // TIntVector2 static function implementation //
// ============================================== // // ============================================== //
template<IntType T> template<IntType T>
TIntVector2<T> MaxV(TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, false> MaxV(TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{ {
v1.x = Phanes::Core::Math::Max(v1.x, v2.x); v1.x = Phanes::Core::Math::Max(v1.x, v2.x);
v1.y = Phanes::Core::Math::Max(v1.y, v2.y); v1.y = Phanes::Core::Math::Max(v1.y, v2.y);
@ -511,7 +455,7 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
TIntVector2<T> MinV(TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, false> MinV(TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{ {
v1.x = Phanes::Core::Math::Min(v1.x, v2.x); v1.x = Phanes::Core::Math::Min(v1.x, v2.x);
v1.y = Phanes::Core::Math::Min(v1.y, v2.y); v1.y = Phanes::Core::Math::Min(v1.y, v2.y);
@ -520,7 +464,7 @@ namespace Phanes::Core::Math {
} }
template<IntType T> template<IntType T>
TIntVector2<T> SignVectorV(TIntVector2<T>& v1) TIntVector2<T, false> SignVectorV(TIntVector2<T, false>& v1)
{ {
v1.x = (v1.x >= 0) ? 1 : -1; v1.x = (v1.x >= 0) ? 1 : -1;
v1.y = (v1.y >= 0) ? 1 : -1; v1.y = (v1.y >= 0) ? 1 : -1;
@ -538,7 +482,7 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
TIntVector2<T> ScaleV(TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, false> ScaleV(TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{ {
v1.x *= v2.x; v1.x *= v2.x;
v1.y *= v2.y; v1.y *= v2.y;
@ -554,7 +498,7 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
TIntVector2<T> Set(TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, false> Set(TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{ {
v1 = v2; v1 = v2;
@ -569,7 +513,7 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
TIntVector2<T> Set(TIntVector2<T>& v1, T x, T y) TIntVector2<T, false> Set(TIntVector2<T, false>& v1, T x, T y)
{ {
v1.x = x; v1.x = x;
v1.y = y; v1.y = y;
@ -585,7 +529,7 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
TIntVector2<T> NegateV(TIntVector2<T>& v1) TIntVector2<T, false> NegateV(TIntVector2<T, false>& v1)
{ {
v1.x = -v1.x; v1.x = -v1.x;
v1.y = -v1.y; v1.y = -v1.y;
@ -603,7 +547,7 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
inline bool IsPerpendicular(const TIntVector2<T>& v1, const TIntVector2<T>& v2) inline bool IsPerpendicular(const TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{ {
return (abs(DotP(v1, v2)) = 0); return (abs(DotP(v1, v2)) = 0);
} }
@ -620,7 +564,7 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
inline bool IsParallel(const TIntVector2<T>& v1, const TIntVector2<T>& v2) inline bool IsParallel(const TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{ {
return (abs(DotP(v1, v2)) = 1); return (abs(DotP(v1, v2)) = 1);
} }
@ -637,7 +581,7 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
inline bool IsCoincident(const TIntVector2<T>& v1, const TIntVector2<T>& v2) inline bool IsCoincident(const TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{ {
return (DotP(v1, v2) > 1); return (DotP(v1, v2) > 1);
} }
@ -652,7 +596,7 @@ namespace Phanes::Core::Math {
*/ */
//template<IntType T> //template<IntType T>
//Matrix2<T> OuterProduct(const TIntVector2<T>& v1, const TIntVector2<T>& v2); //Matrix2<T> OuterProduct(const TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2);
// ================================================================ // // ================================================================ //
@ -669,9 +613,9 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
TIntVector2<T> Negate(const TIntVector2<T>& v1) TIntVector2<T, false> Negate(const TIntVector2<T, false>& v1)
{ {
return TIntVector2<T>(-v1.x, -v1.y); return TIntVector2<T, false>(-v1.x, -v1.y);
} }
/** /**
@ -684,9 +628,9 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
TIntVector2<T> Min(const TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, false> Min(const TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{ {
return TIntVector2<T>(Phanes::Core::Math::Min(v1.x, v2.x), Phanes::Core::Math::Min(v1.y, v2.y)); return TIntVector2<T, false>(Phanes::Core::Math::Min(v1.x, v2.x), Phanes::Core::Math::Min(v1.y, v2.y));
} }
/** /**
@ -699,16 +643,16 @@ namespace Phanes::Core::Math {
*/ */
template<IntType T> template<IntType T>
TIntVector2<T> Max(const TIntVector2<T>& v1, const TIntVector2<T>& v2) TIntVector2<T, false> Max(const TIntVector2<T, false>& v1, const TIntVector2<T, false>& v2)
{ {
return TIntVector2<T>(Phanes::Core::Math::Max(v1.x, v2.x), Phanes::Core::Math::Max(v1.y, v2.y)); return TIntVector2<T, false>(Phanes::Core::Math::Max(v1.x, v2.x), Phanes::Core::Math::Max(v1.y, v2.y));
} }
template<IntType T> template<IntType T>
TIntVector2<T> SignVector(const TIntVector2<T>& v1) TIntVector2<T, false> SignVector(const TIntVector2<T, false>& v1)
{ {
return TIntVector2<T>((v1.x >= 0) ? 1 : -1, (v1.y >= 0) ? 1 : -1); return TIntVector2<T, false>((v1.x >= 0) ? 1 : -1, (v1.y >= 0) ? 1 : -1);
} }
@ -716,3 +660,4 @@ namespace Phanes::Core::Math {
#endif // !INTVECTOR2_H #endif // !INTVECTOR2_H
#include "Core/public/Math/IntVector2.inl"

View File

@ -0,0 +1,403 @@
#pragma once
#include "Core/public/Math/Boilerplate.h"
#include "Core/public/Math/Detail/IntVector2Decl.inl"
#include "Core/public/Math/SIMD/SIMDIntrinsics.h"
#include "Core/public/Math/SIMD/PhanesSIMDTypes.h"
#include "Core/public/Math/IntVector2.hpp"
namespace Phanes::Core::Math
{
template<IntType T, bool A>
TIntVector2<T, A>::TIntVector2(const TIntVector2<T, A>& v)
{
Detail::construct_ivec2<T, SIMD::use_simd<T, 2, A>::value>::map(*this, v);
}
template<IntType T, bool A>
TIntVector2<T, A>::TIntVector2(const T _x, const T _y)
{
Detail::construct_ivec2<T, SIMD::use_simd<T, 2, A>::value>::map(*this, _x, _y);
}
template<IntType T, bool A>
TIntVector2<T, A>::TIntVector2(const T s)
{
Detail::construct_ivec2<T, SIMD::use_simd<T, 2, A>::value>::map(*this, s);
}
template<IntType T, bool A>
TIntVector2<T, A>::TIntVector2(const T* comp)
{
Detail::construct_ivec2<T, SIMD::use_simd<T, 2, A>::value>::map(*this, comp);
}
template<IntType T, bool A>
TIntVector2<T, A> operator+=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_add<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator+=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_add<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator-=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_sub<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator-=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_sub<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator*=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_mul<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator*=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_mul<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator/=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_div<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator/=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_div<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator%=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_mod<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator%=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_mod<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator+(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_add<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator+(TIntVector2<T, A>& v1, T s)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_add<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator-(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_sub<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator-(TIntVector2<T, A>& v1, T s)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_sub<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator*(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_mul<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator*(TIntVector2<T, A>& v1, T s)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_mul<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator/(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_div<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator/(TIntVector2<T, A>& v1, T s)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_div<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator%(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_mod<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator%(TIntVector2<T, A>& v1, T s)
{
TIntVector2<T, A> r;
Detail::compute_ivec2_mod<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
// Bitwise operators
template<IntType T, bool A>
TIntVector2<T, A> operator&=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_and<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator&=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_and<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator|=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_or<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator|=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_or<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator^=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_xor<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator^=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_xor<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator<<=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_left_shift<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator<<=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_left_shift<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator>>=(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
Detail::compute_ivec2_right_shift<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, v2);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator>>=(TIntVector2<T, A>& v1, T s)
{
Detail::compute_ivec2_right_shift<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v1, s);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A> operator&(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TVector2<T, A> r;
Detail::compute_ivec2_and<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator&(TIntVector2<T, A>& v1, T s)
{
TVector2<T, A> r;
Detail::compute_ivec2_and<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator|(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TVector2<T, A> r;
Detail::compute_ivec2_or<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator|(TIntVector2<T, A>& v1, T s)
{
TVector2<T, A> r;
Detail::compute_ivec2_or<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator^(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TVector2<T, A> r;
Detail::compute_ivec2_xor<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator^(TIntVector2<T, A>& v1, T s)
{
TVector2<T, A> r;
Detail::compute_ivec2_xor<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator<<(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TVector2<T, A> r;
Detail::compute_ivec2_left_shift<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator<<(TIntVector2<T, A>& v1, T s)
{
TVector2<T, A> r;
Detail::compute_ivec2_left_shift<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator>>(TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
TVector2<T, A> r;
Detail::compute_ivec2_right_shift<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, v2);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator>>(TIntVector2<T, A>& v1, T s)
{
TVector2<T, A> r;
Detail::compute_ivec2_right_shift<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1, s);
return r;
}
template<IntType T, bool A>
TIntVector2<T, A> operator~(TIntVector2<T, A>& v1)
{
TVector2<T, A> r;
Detail::compute_ivec2_bnot<T, SIMD::use_simd<T, 2, A>::value>::map(r, v1);
return r;
}
// Comparision
template<IntType T, bool A>
bool operator==(const TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
return Detail::compute_ivec2_eq<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v2);
}
template<IntType T, bool A>
bool operator!=(const TIntVector2<T, A>& v1, const TIntVector2<T, A>& v2)
{
return Detail::compute_ivec2_ieq<T, SIMD::use_simd<T, 2, A>::value>::map(v1, v2);
}
// Inc- / Decrement
template<IntType T, bool A>
TIntVector2<T, A>& operator++(TIntVector2<T, A>& v1)
{
Detail::compute_ivec2_inc<T, SIMD::use_simd<T, 2, A>::value>::map(v1);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A>& operator--(TIntVector2<T, A>& v1)
{
Detail::compute_ivec2_inc<T, SIMD::use_simd<T, 2, A>::value>::map(v1);
return v1;
}
template<IntType T, bool A>
TIntVector2<T, A>& operator++(TIntVector2<T, A>& v1, int)
{
return ++v1;
}
template<IntType T, bool A>
TIntVector2<T, A>& operator--(TIntVector2<T, A>& v1, int)
{
return --v1;
}
}

View File

@ -37,12 +37,12 @@ namespace Phanes::Core::Math {
template<RealType T> struct TPoint2; template<RealType T> struct TPoint2;
template<RealType T> struct TPoint3; template<RealType T> struct TPoint3;
template<RealType T> struct TPoint4; template<RealType T> struct TPoint4;
template<IntType T> struct TIntVector2;
template<IntType T> struct TIntVector3; template<IntType T> struct TIntVector3;
template<IntType T> struct TIntVector4; template<IntType T> struct TIntVector4;
template<IntType T> struct TIntPoint2; template<IntType T> struct TIntPoint2;
template<IntType T> struct TIntPoint3; template<IntType T> struct TIntPoint3;
template<IntType T> struct TIntPoint4; template<IntType T> struct TIntPoint4;
template<IntType T, bool A> struct TIntVector2;
template<RealType T, bool A> struct TVector2; template<RealType T, bool A> struct TVector2;
template<RealType T, bool A> struct TVector3; template<RealType T, bool A> struct TVector3;
template<RealType T, bool A> struct TVector4; template<RealType T, bool A> struct TVector4;

View File

@ -421,5 +421,10 @@ namespace Phanes::Core::Math::Detail
} }
}; };
// =============== //
// TIntVector2 //
// =============== //
} }