Vector2.DistanceSquared Method (Vector2, Vector2)
Calculates the distance between two vectors squared.
Syntax
'Declaration
Public Shared Function DistanceSquared ( _
value1 As Vector2, _
value2 As Vector2 _
) As Single
public static float DistanceSquared (
Vector2 value1,
Vector2 value2
)
public:
static float DistanceSquared(
Vector2 value1,
Vector2 value2
)
Parameters
Return Value
Type: Single
The distance between the source vectors squared.
Remarks
Distance is calculated with the formula:
Distance squared is the value before taking the square root. Distance squared can often be used in place of distance if relative comparisons are being made. For example, consider three points A, B, and C. To determine whether B or C is further from A, compare the distance between A and B to the distance between A and C. Calculating the two distances involves two square roots, which are computationally expensive. However, using distance squared provides the same information and avoids calculating two square roots.
Requirements
Namespace: Microsoft.Xna.Framework
Assembly: Microsoft.Xna.Framework (in microsoft.xna.framework.dll)
See Also
Reference
Vector2 Structure
Vector2 Members
Microsoft.Xna.Framework Namespace
Platforms
Windows Phone