mycos = []; mysin = []; function Mycos(c) { c %= 360; if(c < 0) c += 360; if((c <= 180)) return (mycos[c]); if(c > 180) return (mycos[180 - (c - 180)]); return 0; } function Mysin(c) { c %= 360; if( c < 0) c += 360; if(c <= 180) return (mysin[c]); if(c > 180) return (mysin[180 - (c - 180)] * -1); return 0; }