uncrustify libraries/AP_Math/vector3.cpp

This commit is contained in:
uncrustify 2012-08-16 23:20:14 -07:00 committed by Pat Hickey
parent 424baf3f29
commit a208fbb2d9

View File

@ -120,7 +120,9 @@ Vector3<T> Vector3<T>::operator %(const Vector3<T> &v) const
// dot product
template <typename T>
T Vector3<T>::operator *(const Vector3<T> &v) const
{ return x*v.x + y*v.y + z*v.z; }
{
return x*v.x + y*v.y + z*v.z;
}
template <typename T>
float Vector3<T>::length(void) const