Calculates the length of the vector.
| 128 | |
| 129 | // Calculates the length of the vector. |
| 130 | T Length() const |
| 131 | { |
| 132 | return Math::Sqrt(X * X + Y * Y); |
| 133 | } |
| 134 | |
| 135 | // Calculates the squared length of the vector. |
| 136 | T LengthSquared() const |
no test coverage detected