public static float Tan (float f);

설명

Returns the tangent of angle f in radians.

See Also: Cos, Sin.

using UnityEngine;
using System.Collections;

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