CSJ2K.j2k.codestream.reader.BitstreamReaderAgent.getNumTiles C# (CSharp) Method

getNumTiles() public method

Returns the number of tiles in the horizontal and vertical directions.
public getNumTiles ( Coord co ) : Coord
co Coord If not null this object is used to return the information. If /// null a new one is created and returned. /// ///
return Coord
        public Coord getNumTiles(Coord co)
        {
            if (co != null)
            {
                co.x = ntX;
                co.y = ntY;
                return co;
            }
            else
            {
                return new Coord(ntX, ntY);
            }
        }

Same methods

BitstreamReaderAgent::getNumTiles ( ) : int