CSJ2K.j2k.image.input.ImgReaderPGM.getFixedPoint C# (CSharp) Method

getFixedPoint() public method

Returns the position of the fixed point in the specified component (i.e. the number of fractional bits), which is always 0 for this ImgReader.
public getFixedPoint ( int c ) : int
c int The index of the component. /// ///
return int
        public override int getFixedPoint(int c)
        {
            // Check component index
            if (c != 0)
                throw new System.ArgumentException();
            return 0;
        }