sgp4/Vector.cpp

6 lines
112 B
C++
Raw Normal View History

2011-03-24 15:55:10 +00:00
#include "Vector.h"
2011-04-03 12:08:31 +00:00
double Vector::GetMagnitude() const {
return sqrt(x_ * x_ + y_ * y_ + z_ * z_);
}