diff --git a/core/math/vector3i.h b/core/math/vector3i.h index f38c5aaba..6809e37db 100644 --- a/core/math/vector3i.h +++ b/core/math/vector3i.h @@ -320,4 +320,7 @@ void Vector3i::zero() { x = y = z = 0; } +typedef Vector3i Size3i; +typedef Vector3i Point3i; + #endif // VECTOR3I_H diff --git a/core/math/vector4i.h b/core/math/vector4i.h index 71c7d1213..d90303f20 100644 --- a/core/math/vector4i.h +++ b/core/math/vector4i.h @@ -342,4 +342,7 @@ void Vector4i::zero() { x = y = z = w = 0; } +typedef Vector4i Size4i; +typedef Vector4i Point4i; + #endif // VECTOR4I_H