Pow Method

Project Mercury API

[This is preliminary documentation and is subject to change.]

Returns the specified value raised to the specified power.

Namespace:  ProjectMercury
Assembly:  ProjectMercury (in ProjectMercury.dll) Version: 3.1.0.0

Syntax

C#
public static float Pow(
	float value,
	float power
)
Visual Basic (Declaration)
Public Shared Function Pow ( _
	value As Single, _
	power As Single _
) As Single
Visual C++
public:
static float Pow(
	float value, 
	float power
)

Parameters

value
Type: System..::.Single
Source value.
power
Type: System..::.Single
A single precision floating point number that specifies a power.

Return Value

The specified value raised to the specified power.

See Also