Fixed spaces
Former-commit-id: c0b17c175a2d0da81d28fd5287b72e8546ce210b
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user