Version: 2017.1
public static float Tan (float f);

설명

Returns the tangent of angle f in radians.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Tan(0.5F)); } }