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

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

Returns the coordinates of the current tile. This default implementation assumes no-tiling, so (0,0) is returned.
public getTile ( CSJ2K.j2k.image.Coord co ) : CSJ2K.j2k.image.Coord
co CSJ2K.j2k.image.Coord If not null this object is used to return the information. If /// null a new one is created and returned. /// ///
Результат CSJ2K.j2k.image.Coord
        public virtual Coord getTile(Coord co)
        {
            if (co != null)
            {
                co.x = 0;
                co.y = 0;
                return co;
            }
            else
            {
                return new Coord(0, 0);
            }
        }