[ Pobierz całość w formacie PDF ]
.891006524188375226,-0.882947592858934649,-0.874619707139403846,-0.866025403784447034,-0.857167300702120993,-0.848048096156435061,-0.838670567945433487,-0.829037572555051505,-0.819152044289001902,-0.809016994374957998,-0.798635510047303709,-0.788010753606733227,-0.777145961456982559,-0.766044443118990004,-0.754709580222784449,-0.743144825477407012,-0.731353701619183672,-0.719339800338664737,-0.707106781186561450,-0.694658370459011576,-0.681998360062513242,-0.669130606358873337,-0.656059028990522708,-0.642787609686555128,-0.629320391049853711,-0.615661475325674945,-0.601815023152065254,-0.587785252292490457,-0.573576436351063812,-0.559192903470765002,-0.544639035015045625,-0.529919264233223886,-0.515038074910073473,-0.500000000000019651,-0.484809620246357043,-0.469471562785911123,-0.453990499739567510,-0.438371146789098498,-0.422618261740720869,-0.406736643075822024,-0.390731128489295920,-0.374606593415934497,-0.358367949545323083,-0.342020143325691917,-0.325568154457180181,-0.309016994374971266,-0.292371704722760861,-0.275637355817023644,-0.258819045102545497,-0.241921895599692793,-0.224951054343890372,-0.207911690817784989,-0.190808995376570756,-0.173648177666956560,-0.156434465040257376,-0.139173100960092194,-0.121869343405174496,-0.104528463267680741,-0.087155742747685686,-0.069756473744153044,-0.052335956242971805,-0.034899496702529162,-0.017452406437311916,-0.000000000000028605,0.017452406437254715,0.034899496702471985,0.052335956242914670,0.069756473744095979,0.087155742747628689,0.104528463267623842,0.121869343405117708,0.139173100960035545,0.156434465040200865,0.173648177666900216,0.190808995376514606,0.207911690817729033,0.224951054343834611,0.241921895599637282,0.258819045102490264,0.275637355816968632,0.292371704722706127,0.309016994374916809,0.325568154457126058,0.342020143325638126,0.358367949545269682,0.374606593415881484,0.390731128489243240,0.406736643075769733,0.422618261740669021,0.438371146789047095,0.453990499739516551,0.469471562785860608,0.484809620246306972,0.499999999999970080,0.515038074910024402,0.529919264233175369,0.544639035014997663,0.559192903470717484,0.573576436351016961,0.587785252292444271,0.601815023152019624,0.615661475325629759,0.629320391049809191,0.642787609686511385,0.656059028990479520,0.669130606358830815,0.681998360062471387,0.694658370458970387,0.707106781186521038,0.719339800338624991,0.731353701619144592,0.743144825477368709,0.754709580222746812,0.766044443118953255,0.777145961456946477,0.788010753606698033,0.798635510047269292,0.809016994374924359,0.819152044288969150,0.829037572555019531,0.838670567945402290,0.848048096156404752,0.857167300702091572,0.866025403784418391,0.874619707139376090,0.882947592858907782,0.891006524188349247,0.898794046299148941,0.906307787036632395,0.913545457642583991,0.920504853452423943,0.927183854566771659,0.933580426497186644,0.939692620785893884,0.945518575599302968,0.951056516295140320,0.956304755963022890,0.961261695938306904,0.965925826289056988,0.970295726275985926,0.974370064785225365,0.978147600733796474,0.981627183447655538,0.984807753012200360,0.987688340595130776,0.990268068741564034,0.992546151641316543,0.994521895368268627,0.996194698091741548,0.997564050259821089,0.998629534754571502,0.999390827019094097,0.999847695156390381int dtoi(double x){/* Rounds a floating point number to an integer */int y;y = x;if (y < (x + 0.5))y++;return(y);}int getmode(int *ncols){/* Returns current video mode and number of columns in ncols */union REGS inreg,outreg;inreg.h.ah = 0x0F;int86(0x10, &inreg, &outreg);*ncols = outreg.h.ah;return(outreg.h.al);}void setvideo(unsigned char mode){/* Sets the video display mode and clears the screen *//* (modes above 127 on VGA monitors do not clear the screen) */asm mov ax , mode;asm int 10h;/* Set global variables */switch(mode){case 0:case 1:case 2:case 3: break;case 4:case 9:case 13:case 19:case 5: maxx = 320;maxy = 200;break;case 14:case 10:case 6: maxx = 640;maxy = 200;break;case 7: maxx = 720;maxy = 400;break;case 8: maxx = 160;maxy = 200;break;case 15:case 16: maxx = 640;maxy = 350;break;case 17:case 18: maxx = 640;maxy = 480;break;}_dmode = mode;}void getcursor(int *row, int *col){/* Returns the cursor position and size for the currently activevideo display page */union REGS inreg,outreg;inreg.h.bh = 0;inreg.h.ah = 0x03;int86(0x10, &inreg, &outreg);*row = outreg.h.dh;*col = outreg.h [ Pobierz całość w formacie PDF ]
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • trzylatki.xlx.pl