public static float Tan (float f);

描述

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

另请参阅:CosSin

using UnityEngine;
using System.Collections;

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