 | MathUtilsPow Method (Single, Single) |
Returns the specified number raised to the passed power.
Namespace: Slash.Math.UtilsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static float Pow(
float x,
float y
)
Public Shared Function Pow (
x As Single,
y As Single
) As Single
public:
static float Pow(
float x,
float y
)
static member Pow :
x : float32 *
y : float32 -> float32
Parameters
- x
- Type: SystemSingle
Number to raise. - y
- Type: SystemSingle
Power to raise to.
Return Value
Type:
SingleSpecified number raised to the passed power.
See Also