Legacy Documentation: Version 2018.1 (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 float Deg2Rad;

Description

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

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

See Also: Rad2Deg constant.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float deg = 30.0F;

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

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