Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Borland C++ 2.x ( with Turbo C ) - <b>getx() get the current position's x coordinate</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 getx()                  Get the Current Position's x Coordinate

 #include   <graphics.h>

 int far    getx(void);

    getx() gets the current position's (CP) x coordinate relative to the
    current viewport.

    Returns:    The current position's x coordinate.

   -------------------------------- Example ---------------------------------

    The following statements get the current position's x and y
    coordinates and draw lines out from that point.

           #include <graphics.h>
           #include <conio.h>

           int gdriver = DETECT;
           int gmode;

           main()
           {
               int x0, y0;

               initgraph(&gdriver,&gmode,"");
               x0 = getx();
               y0 = gety();
               linerel(100,200);
               moveto(x0,y0);
               linerel(200,200);
               moveto(x0,y0);
               linerel(300,200);
               getch();
               closegraph();
           }


See Also: gety() moveto()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson