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

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

Returns the horizontal and vertical indexes of the current tile.
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 override Coord getTile(Coord co)
        {
            if (co != null)
            {
                co.x = tx;
                co.y = ty;
                return co;
            }
            else
            {
                return new Coord(tx, ty);
            }
        }