C# Class AForge.Math.Tools

Set of tool functions.
The class contains different utility functions.
Datei anzeigen Open project: atosorigin/Kinect

Public Methods

Method Description
IsPowerOf2 ( int x ) : bool

Checks if the specified integer is power of 2.

Log2 ( int x ) : int

Get base of binary logarithm.

Pow2 ( int power ) : int

Calculates power of 2.

Method Details

IsPowerOf2() public static method

Checks if the specified integer is power of 2.
public static IsPowerOf2 ( int x ) : bool
x int Integer number to check.
return bool

Log2() public static method

Get base of binary logarithm.
public static Log2 ( int x ) : int
x int Source integer number.
return int

Pow2() public static method

Calculates power of 2.
public static Pow2 ( int power ) : int
power int Power to raise in.
return int