home *** CD-ROM | disk | FTP | other *** search
-
-
- # include <stdio.h>
- # include <dos.h>
- # include <stdlib.h>
-
- # define M_PI 3.14159265358979324
- # define M_PI_2 1.57079632679489662
- # define M_PI_4 0.785398163397448310
-
- void GotoXY(int x,int y)
- {
- union REGS r;
- r.h.ah=2;
- r.h.dl=x-1;
- r.h.dh=y-1;
- r.h.bh=0;
- int86(0x10, &r, &r);
- }
-
- void ClrScr()
- {
- union REGS r;
- r.h.ah=6;
- r.h.al=0;
- r.h.cl=0;
- r.h.ch=0;
- r.h.dl=79;
- r.h.dh=24;
- r.h.bh=7;
- int86(0x10, &r, &r);
- }
-
- void ClrEol()
- { int i,x,y,z;
- char c;
- union REGS r;
-
- r.h.ah=3;
- r.h.bh = 0;
- int86(0x10, &r, &r);
- y = r.h.dh;
- x = r.h.dl;
- z = 79-x;
- c = 32;
- for (i=1; i<z; i++)
- printf("%c",c);
- GotoXY(x+1,y+1);
- }
-
- float frandom()
- {
- float r;
- int i;
- i = rand();
- r = i;
- r = r / 32767.0;
- return(r);
- }
-
- void double2float(float destination[], double source[],int n)
- { int i;
- for (i=0; i <=n-1; i++)
- destination[i] = source[i];
- }
-
- void float2double(double destination[], float source[],int n)
- { int i;
- for (i=0; i <=n-1; i++)
- destination[i] = source[i];
- }
-