Version: 2022.3
言語: 日本語
public static float Tan (float f);

説明

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

See Also: Cos, Sin.

using UnityEngine;
using System.Collections;

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