Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Pow(float, float)

Returns f raised to power p.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public static float Pow(float f, float p)

Parameters

Returns

Type

Description

float

Examples

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