Fixed spaces
Former-commit-id: c0b17c175a2d0da81d28fd5287b72e8546ce210b
This commit is contained in:
parent
2fe693f24d
commit
50b1055e78
|
|
@ -110,16 +110,16 @@ template<typename T>
|
||||||
NzEulerAngles<T> NzEulerAngles<T>::operator+(const NzEulerAngles& angles) const
|
NzEulerAngles<T> NzEulerAngles<T>::operator+(const NzEulerAngles& angles) const
|
||||||
{
|
{
|
||||||
return NzEulerAngles(pitch + angles.pitch,
|
return NzEulerAngles(pitch + angles.pitch,
|
||||||
yaw + angles.yaw,
|
yaw + angles.yaw,
|
||||||
roll + angles.roll);
|
roll + angles.roll);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
NzEulerAngles<T> NzEulerAngles<T>::operator-(const NzEulerAngles& angles) const
|
NzEulerAngles<T> NzEulerAngles<T>::operator-(const NzEulerAngles& angles) const
|
||||||
{
|
{
|
||||||
return NzEulerAngles(pitch - angles.pitch,
|
return NzEulerAngles(pitch - angles.pitch,
|
||||||
yaw - angles.yaw,
|
yaw - angles.yaw,
|
||||||
roll - angles.roll);
|
roll - angles.roll);
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue