Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


radians

Returns the result of converting a float value from degrees to radians.
Read time 2 minutesLast updated 11 days ago

Definition

radians(float)

Returns the result of converting a float value from degrees to radians.
public static float radians(float x)

Parameters

Angle in degrees.

Returns

Type

Description

floatAngle converted to radians.

radians(float2)

Returns the result of a componentwise conversion of a float2 vector from degrees to radians.
public static float2 radians(float2 x)

Parameters

Vector containing angles in degrees.

Returns

Type

Description

float2Vector containing angles converted to radians.

radians(float3)

Returns the result of a componentwise conversion of a float3 vector from degrees to radians.
public static float3 radians(float3 x)

Parameters

Vector containing angles in degrees.

Returns

Type

Description

float3Vector containing angles converted to radians.

radians(float4)

Returns the result of a componentwise conversion of a float4 vector from degrees to radians.
public static float4 radians(float4 x)

Parameters

Vector containing angles in degrees.

Returns

Type

Description

float4Vector containing angles converted to radians.

radians(double)

Returns the result of converting a float value from degrees to radians.
public static double radians(double x)

Parameters

Angle in degrees.

Returns

Type

Description

doubleAngle converted to radians.

radians(double2)

Returns the result of a componentwise conversion of a float2 vector from degrees to radians.
public static double2 radians(double2 x)

Parameters

Vector containing angles in degrees.

Returns

Type

Description

double2Vector containing angles converted to radians.

radians(double3)

Returns the result of a componentwise conversion of a float3 vector from degrees to radians.
public static double3 radians(double3 x)

Parameters

Vector containing angles in degrees.

Returns

Type

Description

double3Vector containing angles converted to radians.

radians(double4)

Returns the result of a componentwise conversion of a float4 vector from degrees to radians.
public static double4 radians(double4 x)

Parameters

Vector containing angles in degrees.

Returns

Type

Description

double4Vector containing angles converted to radians.