Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Mathf.Deg2Rad

public static var Deg2Rad: float;

Description

Degrees-to-radians conversion constant (Read Only).

This is equal to (PI * 2) / 360.

See Also: Rad2Deg constant.

// convert 30 degrees to radians

var deg : float = 30.0;

function Start() { var rad : float = deg * Mathf.Deg2Rad; Debug.Log(deg + "degrees are equal to " + rad + " radians."); }

Did you find this page useful? Please give it a rating: