C# Class AForge.Math.Tools

Set of tool functions.
The class contains different utility functions.
Afficher le fichier Open project: atosorigin/Kinect

Méthodes publiques

Méthode 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 méthode

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

Log2() public static méthode

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

Pow2() public static méthode

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