Added (U)Int32 typedef for Box,Rect and VectorI classes

Former-commit-id: 20fcc8e7ccde6f5306c08058ad477e81cfb2d204
This commit is contained in:
Lynix 2014-06-30 10:52:25 +02:00
parent 53e5944b56
commit d9c38181a5
5 changed files with 11 additions and 0 deletions

View File

@ -95,6 +95,8 @@ typedef NzBox<double> NzBoxd;
typedef NzBox<float> NzBoxf;
typedef NzBox<int> NzBoxi;
typedef NzBox<unsigned int> NzBoxui;
typedef NzBox<nzInt32> NzBoxi32;
typedef NzBox<nzUInt32> NzBoxui32;
#include <Nazara/Math/Box.inl>

View File

@ -87,6 +87,8 @@ typedef NzRect<double> NzRectd;
typedef NzRect<float> NzRectf;
typedef NzRect<int> NzRecti;
typedef NzRect<unsigned int> NzRectui;
typedef NzRect<nzInt32> NzRecti32;
typedef NzRect<nzUInt32> NzRectui32;
#include <Nazara/Math/Rect.inl>

View File

@ -96,6 +96,8 @@ typedef NzVector2<double> NzVector2d;
typedef NzVector2<float> NzVector2f;
typedef NzVector2<int> NzVector2i;
typedef NzVector2<unsigned int> NzVector2ui;
typedef NzVector2<nzInt32> NzVector2i32;
typedef NzVector2<nzUInt32> NzVector2ui32;
#include <Nazara/Math/Vector2.inl>

View File

@ -119,6 +119,8 @@ typedef NzVector3<double> NzVector3d;
typedef NzVector3<float> NzVector3f;
typedef NzVector3<int> NzVector3i;
typedef NzVector3<unsigned int> NzVector3ui;
typedef NzVector3<nzInt32> NzVector3i32;
typedef NzVector3<nzUInt32> NzVector3ui32;
#include <Nazara/Math/Vector3.inl>

View File

@ -90,6 +90,9 @@ template<typename T> NzVector4<T> operator/(T scale, const NzVector4<T>& vec);
typedef NzVector4<double> NzVector4d;
typedef NzVector4<float> NzVector4f;
typedef NzVector4<int> NzVector4i;
typedef NzVector4<unsigned int> NzVector4ui;
typedef NzVector4<nzInt32> NzVector4i32;
typedef NzVector4<nzUInt32> NzVector4ui32;
#include <Nazara/Math/Vector4.inl>