Fixed spaces

Former-commit-id: c0b17c175a2d0da81d28fd5287b72e8546ce210b
This commit is contained in:
Lynix 2013-03-06 13:41:58 +01:00
parent 2fe693f24d
commit 50b1055e78
1 changed files with 4 additions and 4 deletions

View File

@ -110,16 +110,16 @@ template<typename T>
NzEulerAngles<T> NzEulerAngles<T>::operator+(const NzEulerAngles& angles) const
{
return NzEulerAngles(pitch + angles.pitch,
yaw + angles.yaw,
roll + angles.roll);
yaw + angles.yaw,
roll + angles.roll);
}
template<typename T>
NzEulerAngles<T> NzEulerAngles<T>::operator-(const NzEulerAngles& angles) const
{
return NzEulerAngles(pitch - angles.pitch,
yaw - angles.yaw,
roll - angles.roll);
yaw - angles.yaw,
roll - angles.roll);
}
template<typename T>