CosSin
Calculate both the Cosine and Sine of the specified angle.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Method
- Namespace: Unity.U2D.Physics
- Assembly: UnityEngine.PhysicsCore2DModule
CosSin(float, float, float)
Calculate both the Cosine and Sine of the specified angle.
public static void CosSin(float angle, out float cosine, out float sine)
Parameters
CosSin(float)
Calculate both the Cosine and Sine of the specified angle.
public static Vector2 CosSin(float angle)
Parameters
The angle to calculate, in radians.
Returns
Type | Description |
|---|---|
| Vector2 | A 2D vector where X is the Cosine and Y is the Sine of the specified angle. |