Version: 2020.2
언어: 한국어
public static float Pow (float f, float p);

설명

Returns f raised to power p.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { print(Mathf.Pow(6, 1.8f)); } }