Mathf.Tan
public static float Tan(float f);
Description 描述
Returns the tangent of angle f in radians.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Tan(0.5F)); } }
Returns the tangent of angle f in radians.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Tan(0.5F)); } }