Added Size and Point typedefs for Vector3i and Vector4i.

This commit is contained in:
Relintai 2023-04-16 16:16:56 +02:00
parent 1fc3c67ab5
commit d6442bc57c
2 changed files with 6 additions and 0 deletions

View File

@ -320,4 +320,7 @@ void Vector3i::zero() {
x = y = z = 0;
}
typedef Vector3i Size3i;
typedef Vector3i Point3i;
#endif // VECTOR3I_H

View File

@ -342,4 +342,7 @@ void Vector4i::zero() {
x = y = z = w = 0;
}
typedef Vector4i Size4i;
typedef Vector4i Point4i;
#endif // VECTOR4I_H