Calculates the squared length of the vector.
| 134 | |
| 135 | // Calculates the squared length of the vector. |
| 136 | T LengthSquared() const |
| 137 | { |
| 138 | return X * X + Y * Y; |
| 139 | } |
| 140 | |
| 141 | // Calculates inverted length of the vector (1 / length). |
| 142 | T InvLength() const |
no outgoing calls
no test coverage detected