mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
Make mat4x3 binary operators for scalars consistent with other types
This commit is contained in:
parent
7da7f7c887
commit
bdf26d258d
@ -37,7 +37,7 @@ namespace glm
|
|||||||
template<qualifier P>
|
template<qualifier P>
|
||||||
GLM_FUNC_DECL GLM_CONSTEXPR mat(mat<4, 3, T, P> const& m);
|
GLM_FUNC_DECL GLM_CONSTEXPR mat(mat<4, 3, T, P> const& m);
|
||||||
|
|
||||||
GLM_FUNC_DECL explicit GLM_CONSTEXPR mat(T const& x);
|
GLM_FUNC_DECL explicit GLM_CONSTEXPR mat(T s);
|
||||||
GLM_FUNC_DECL GLM_CONSTEXPR mat(
|
GLM_FUNC_DECL GLM_CONSTEXPR mat(
|
||||||
T const& x0, T const& y0, T const& z0,
|
T const& x0, T const& y0, T const& z0,
|
||||||
T const& x1, T const& y1, T const& z1,
|
T const& x1, T const& y1, T const& z1,
|
||||||
@ -119,22 +119,22 @@ namespace glm
|
|||||||
// -- Binary operators --
|
// -- Binary operators --
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL mat<4, 3, T, Q> operator+(mat<4, 3, T, Q> const& m, T const& s);
|
GLM_FUNC_DECL mat<4, 3, T, Q> operator+(mat<4, 3, T, Q> const& m, T scalar);
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL mat<4, 3, T, Q> operator+(mat<4, 3, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
|
GLM_FUNC_DECL mat<4, 3, T, Q> operator+(mat<4, 3, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL mat<4, 3, T, Q> operator-(mat<4, 3, T, Q> const& m, T const& s);
|
GLM_FUNC_DECL mat<4, 3, T, Q> operator-(mat<4, 3, T, Q> const& m, T scalar);
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL mat<4, 3, T, Q> operator-(mat<4, 3, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
|
GLM_FUNC_DECL mat<4, 3, T, Q> operator-(mat<4, 3, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL mat<4, 3, T, Q> operator*(mat<4, 3, T, Q> const& m, T const& s);
|
GLM_FUNC_DECL mat<4, 3, T, Q> operator*(mat<4, 3, T, Q> const& m, T scalar);
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL mat<4, 3, T, Q> operator*(T const& s, mat<4, 3, T, Q> const& m);
|
GLM_FUNC_DECL mat<4, 3, T, Q> operator*(T scalar, mat<4, 3, T, Q> const& m);
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL typename mat<4, 3, T, Q>::col_type operator*(mat<4, 3, T, Q> const& m, typename mat<4, 3, T, Q>::row_type const& v);
|
GLM_FUNC_DECL typename mat<4, 3, T, Q>::col_type operator*(mat<4, 3, T, Q> const& m, typename mat<4, 3, T, Q>::row_type const& v);
|
||||||
@ -152,10 +152,10 @@ namespace glm
|
|||||||
GLM_FUNC_DECL mat<4, 3, T, Q> operator*(mat<4, 3, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
|
GLM_FUNC_DECL mat<4, 3, T, Q> operator*(mat<4, 3, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL mat<4, 3, T, Q> operator/(mat<4, 3, T, Q> const& m, T const& s);
|
GLM_FUNC_DECL mat<4, 3, T, Q> operator/(mat<4, 3, T, Q> const& m, T scalar);
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_DECL mat<4, 3, T, Q> operator/(T const& s, mat<4, 3, T, Q> const& m);
|
GLM_FUNC_DECL mat<4, 3, T, Q> operator/(T scalar, mat<4, 3, T, Q> const& m);
|
||||||
|
|
||||||
// -- Boolean operators --
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ namespace glm
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_QUALIFIER GLM_CONSTEXPR mat<4, 3, T, Q>::mat(T const& s)
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR mat<4, 3, T, Q>::mat(T s)
|
||||||
# if GLM_HAS_INITIALIZER_LISTS
|
# if GLM_HAS_INITIALIZER_LISTS
|
||||||
: value{col_type(s, 0, 0), col_type(0, s, 0), col_type(0, 0, s), col_type(0, 0, 0)}
|
: value{col_type(s, 0, 0), col_type(0, s, 0), col_type(0, 0, s), col_type(0, 0, 0)}
|
||||||
# endif
|
# endif
|
||||||
@ -406,13 +406,13 @@ namespace glm
|
|||||||
// -- Binary arithmetic operators --
|
// -- Binary arithmetic operators --
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator+(mat<4, 3, T, Q> const& m, T const& s)
|
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator+(mat<4, 3, T, Q> const& m, T scalar)
|
||||||
{
|
{
|
||||||
return mat<4, 3, T, Q>(
|
return mat<4, 3, T, Q>(
|
||||||
m[0] + s,
|
m[0] + scalar,
|
||||||
m[1] + s,
|
m[1] + scalar,
|
||||||
m[2] + s,
|
m[2] + scalar,
|
||||||
m[3] + s);
|
m[3] + scalar);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
@ -426,13 +426,13 @@ namespace glm
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator-(mat<4, 3, T, Q> const& m, T const& s)
|
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator-(mat<4, 3, T, Q> const& m, T scalar)
|
||||||
{
|
{
|
||||||
return mat<4, 3, T, Q>(
|
return mat<4, 3, T, Q>(
|
||||||
m[0] - s,
|
m[0] - scalar,
|
||||||
m[1] - s,
|
m[1] - scalar,
|
||||||
m[2] - s,
|
m[2] - scalar,
|
||||||
m[3] - s);
|
m[3] - scalar);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
@ -446,23 +446,23 @@ namespace glm
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator*(mat<4, 3, T, Q> const& m, T const& s)
|
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator*(mat<4, 3, T, Q> const& m, T scalar)
|
||||||
{
|
{
|
||||||
return mat<4, 3, T, Q>(
|
return mat<4, 3, T, Q>(
|
||||||
m[0] * s,
|
m[0] * scalar,
|
||||||
m[1] * s,
|
m[1] * scalar,
|
||||||
m[2] * s,
|
m[2] * scalar,
|
||||||
m[3] * s);
|
m[3] * scalar);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator*(T const& s, mat<4, 3, T, Q> const& m)
|
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator*(T scalar, mat<4, 3, T, Q> const& m)
|
||||||
{
|
{
|
||||||
return mat<4, 3, T, Q>(
|
return mat<4, 3, T, Q>(
|
||||||
m[0] * s,
|
m[0] * scalar,
|
||||||
m[1] * s,
|
m[1] * scalar,
|
||||||
m[2] * s,
|
m[2] * scalar,
|
||||||
m[3] * s);
|
m[3] * scalar);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
@ -563,23 +563,23 @@ namespace glm
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator/(mat<4, 3, T, Q> const& m, T const& s)
|
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator/(mat<4, 3, T, Q> const& m, T scalar)
|
||||||
{
|
{
|
||||||
return mat<4, 3, T, Q>(
|
return mat<4, 3, T, Q>(
|
||||||
m[0] / s,
|
m[0] / scalar,
|
||||||
m[1] / s,
|
m[1] / scalar,
|
||||||
m[2] / s,
|
m[2] / scalar,
|
||||||
m[3] / s);
|
m[3] / scalar);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, qualifier Q>
|
template<typename T, qualifier Q>
|
||||||
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator/(T const& s, mat<4, 3, T, Q> const& m)
|
GLM_FUNC_QUALIFIER mat<4, 3, T, Q> operator/(T scalar, mat<4, 3, T, Q> const& m)
|
||||||
{
|
{
|
||||||
return mat<4, 3, T, Q>(
|
return mat<4, 3, T, Q>(
|
||||||
s / m[0],
|
scalar / m[0],
|
||||||
s / m[1],
|
scalar / m[1],
|
||||||
s / m[2],
|
scalar / m[2],
|
||||||
s / m[3]);
|
scalar / m[3]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// -- Boolean operators --
|
// -- Boolean operators --
|
||||||
|
Loading…
Reference in New Issue
Block a user