CSJ2K.j2k.image.input.ImgReader.getTile C# (CSharp) Метод

getTile() публичный Метод

Returns the coordinates of the current tile. This default implementation assumes no-tiling, so (0,0) is returned.
public getTile ( 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. /// ///
Результат Coord
        public virtual Coord getTile(Coord co)
        {
            if (co != null)
            {
                co.x = 0;
                co.y = 0;
                return co;
            }
            else
            {
                return new Coord(0, 0);
            }
        }