Fix operator-(), add operator+()

This commit is contained in:
Sami Kankaristo 2016-03-15 02:38:16 +02:00 committed by Christophe Riccio
parent c7700573a4
commit ad9bfffe65

View File

@ -194,11 +194,17 @@ namespace glm
// -- Unary bit operators --
template <typename T, precision P>
GLM_FUNC_QUALIFIER tdualquat<T, P> operator-(tdualquat<T, P> const & q)
GLM_FUNC_QUALIFIER tdualquat<T, P> operator+(tdualquat<T, P> const & q)
{
return q;
}
template <typename T, precision P>
GLM_FUNC_QUALIFIER tdualquat<T, P> operator-(tdualquat<T, P> const & q)
{
return tdualquat<T, P>(-q.real, -q.dual);
}
// -- Binary operators --
template <typename T, precision P>