Raises x to the power of y.

Namespace: VVVV.Utils.VMath
Assembly: VVVV.Utils (in VVVV.Utils.dll) Version: 1.0.4694.10871

Syntax

C#
public static double Pow(
	double x,
	int y
)

Parameters

x
Type: System..::..Double
The base.
y
Type: System..::..Int32
The exponent.

Return Value

Returns x raised to the power of y.

Remarks

This method should be considerably faster than Math.Pow for small y.

See Also