home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l043 / 3.ddi / MOVEREL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-11-02  |  274 b   |  16 lines

  1. uses
  2.   Graph;
  3. var
  4.   Gd, Gm : integer;
  5.  
  6. begin
  7.   Gd := Detect;
  8.   InitGraph(Gd, Gm, '');
  9.   if GraphResult <> grOk then
  10.     Halt(1);
  11.   MoveTo(1,2);
  12.   MoveRel(10,10); { Move to the point (11, 12) }
  13.   PutPixel(GetX, GetY, GetMaxColor);
  14.   Readln;
  15.   CloseGraph;
  16. end.