Perpendicular
Returns the 2D vector perpendicular to this 2D vector. The result is always rotated 90-degrees in a counter-clockwise direction for a 2D coordinate system where the positive Y axis goes up.
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Method
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
Perpendicular(Vector2)
Returns the 2D vector perpendicular to this 2D vector. The result is always rotated 90-degrees in a counter-clockwise direction for a 2D coordinate system where the positive Y axis goes up.
public static Vector2 Perpendicular(Vector2 inDirection)
Parameters
The input direction.
Returns
Type | Description |
|---|---|
| Vector2 | The perpendicular direction. |
Perpendicular(Vector2)
Returns the 2D vector perpendicular to this 2D vector. The result is always rotated 90-degrees in a counter-clockwise direction for a 2D coordinate system where the positive Y axis goes up.
public static Vector2 Perpendicular(in Vector2 inDirection)
Parameters
The input direction.
Returns
Type | Description |
|---|---|
| Vector2 | The perpendicular direction. |