Mathf.Pow
public static float Pow(float f,
float p);
Description 描述
Returns f raised to power p.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { print(Mathf.Pow(6, 1.8f)); } }
Returns f raised to power p.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { print(Mathf.Pow(6, 1.8f)); } }