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

説明

ラジアンで表された角度 f のタンジェントを返します。

using UnityEngine;
using System.Collections;

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