Объявление
public static float Pow(float f, float p);Описание
Возвращает f
в степени p
.
using UnityEngine;
public class Example : MonoBehaviour
{
void Start()
{
print(Mathf.Pow(6, 1.8f));
}
}
Возвращает f
в степени p
.
using UnityEngine;
public class Example : MonoBehaviour
{
void Start()
{
print(Mathf.Pow(6, 1.8f));
}
}