0 Members and 1 Guest are viewing this topic.
clock()Prgm//Setup CodeStoGDB aClrDrawClrIOClrHomeFnOffsetGraph(“axes”,”off”)//Set Window1.3->xmax1.3->ymax⁻1.3->xmin⁻1.3->yminZoomSqrsetMode(“Angle”,”RADIAN”)//Draw Clock BaseCircle 0,0,1PtText “12”,⁻.15,1.2PtText “6”,⁻.08,⁻1.05PtText “9”,⁻1.2,.08PtText “3”,1.05,.08//Draw 3 hour,5 minute, and 1 minute tick marksFor b,0,60*π/30,π/30 Line .925*cos(b),.925*sin(b),cos(b),sin(b)EndForFor b,0,12*π/6,π/6 Line .85*cos(b),.85*sin(b),cos(b),sin(b)EndForFor b,0,4*π/2,π/2 Line .8*cos(b),.8*sin(b),cos(b),sin(b)EndFor//Repeats until a key is pressedWhile getKey()=0 //Split time List Var into two INT vars getTime()->l1 l1[1]->h l1[2]->m //Draw and erase hands Line 0,0,.5*sin((h-1)*π/6),.5*cos((h-1)*π/6),0 Line 0,0,.5*sin(h*π/6),.5*cos(h*π/6),1 Line 0,0,.7*sin((h-1)*π/30),.7*cos((h-1)*π/30),0 Line 0,0,.7*sin(h*π/30),.7*cos(h*π/30),1EndWhileFnOnRclGDB aEndPrgm
During posting this forum topic I was locked out of this account I am posting that with, so the user redsn0w is me.