Legacy Documentation: Version 5.3
LanguageEnglish
  • C#
  • JS

Script language

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

Mathf.PI

public static float PI;

Description

The infamous 3.14159265358979... value (Read Only).

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float radius = 5; void Start() { float perimeter = 2 * Mathf.PI * radius; Debug.Log("The perimeter of the circle is: " + perimeter); } }