C# Class GameMath.MathI

Show file Open project: npruehs/game-math

Public Methods

Method Description
GetBit ( int i, int k ) : int

Gets the k-th bit of the passed int value.

Method Details

GetBit() public static method

Gets the k-th bit of the passed int value.
public static GetBit ( int i, int k ) : int
i int /// Value to get the k-th bit of. ///
k int /// Bit to get. ///
return int