sqrMagnitude
Returns the squared length of this vector (Read Only).
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public readonly float sqrMagnitude { get; }
Remarks
Calculating the squared magnitude instead of the Vector2.magnitude is much faster. Often if you are comparing magnitudes of two vectors you can just compare their squared magnitudes.
Additional Resources: Vector2.magnitude.