Update Vector4.h

Added some missing explicit tags to Vector4 constructors to match the pattern established by other Vector types.
This commit is contained in:
intolerantape
2021-09-29 20:34:59 -07:00
parent 6657bc924b
commit 6150aaaa77
+3 -3
View File
@@ -125,19 +125,19 @@ public:
// @param xy X and Y values in the vector
// @param z Z component value
// @param w W component value
Vector4(const Vector2& xy, float z, float w);
explicit Vector4(const Vector2& xy, float z, float w);
// Init
// @param xy X and Y values in the vector
// @param zw Z and W values in the vector
// @param z Z component value
// @param w W component value
Vector4(const Vector2& xy, const Vector2& zw);
explicit Vector4(const Vector2& xy, const Vector2& zw);
// Init
// @param xyz X, Y and Z values in the vector
// @param w W component value
Vector4(const Vector3& xyz, float w);
explicit Vector4(const Vector3& xyz, float w);
// Init
// @param xy X and Y values in the vector