public static float Tan (float f);

Description

返回角度 f 的正切(以弧度为单位)。

See Also: Cos, Sin.

using UnityEngine;
using System.Collections;

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