home *** CD-ROM | disk | FTP | other *** search
- /* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
- #include <stdio.h>
- #define EXTERN extern
- #include <typedef.h>
-
-
- void OneAxisDem()
- {
- ClearScreen();
- SetColorWhite();
- SetBackground(0);
-
- DefineHeader(1,"LABELED AXES");
- SetHeaderOn();
- DefineWorld(1, -10., -10., 10., 10.);
- SelectWindow(1);
- SelectWorld(1);
-
- DrawBorder();
-
- DrawAxis(8,-7,0,0,0,0,0,0,TRUE);
- }
-
-
- main()
- {
- InitGraphic();
- OneAxisDem();
- inkey();
- LeaveGraphic();
- }