clocks: clear(BLACK) x = 0 y = 0 h = get_hours m = get_minutes s = get_seconds //красный квадрат fbox (x - 48, y - 48, 96, 96, #660000) //шум effector (0,128,0,x - 50,y - 50,104,100,0) // отражение fbox (-48, 53, 96,30, #660000) effector (0,64,2, x-48,53, 96,100,0) effector (0,120,0, x-48,53, 96,100,0) dot (-48, -48, #000000) dot (-48, -47, #000000) dot (-47, -48, #000000) dot (-46, -48, #000000) dot (-47, -47, #000000) dot (-48, -46, #000000) dot (-48, -45, #000000) dot (-45, -48, #000000) dot (47, -48, #000000) dot (47, -47, #000000) dot (46, -48, #000000) dot (45, -48, #000000) dot (46, -47, #000000) dot (47, -46, #000000) dot (47, -45, #000000) dot (44, -48, #000000) dot (47, 47, #000000) dot (47, 46, #000000) dot (46, 47, #000000) dot (45, 47, #000000) dot (46, 46, #000000) dot (47, 45, #000000) dot (47, 44, #000000) dot (44, 47, #000000) dot (-48, 47, #000000) dot (-48, 46, #000000) dot (-47, 47, #000000) dot (-46, 47, #000000) dot (-47, 46, #000000) dot (-48, 45, #000000) dot (-48, 44, #000000) dot (-45, 47, #000000) dot (-48, 53, #000000) dot (-48, 54, #000000) dot (-47, 53, #000000) dot (-46, 53, #000000) dot (-47, 54, #000000) dot (-48, 55, #000000) dot (-48, 56, #000000) dot (-45, 53, #000000) dot (47, 53, #000000) dot (47, 54, #000000) dot (46, 53, #000000) dot (45, 53, #000000) dot (46, 54, #000000) dot (47, 55, #000000) dot (47, 56, #000000) dot (44, 53, #000000) ///////////////////////////////////делители отражение fbox (43, 96, 4, 4, #330000) fbox (-2, 54, 4, 4, #770000) fbox (-46, 96, 4, 4, #330000) ///////////////////////////////////делители отражение f = fps print("$h:$m:$s", 92,42, SNEG) print ("FPS = $fps", -157, 44, SNEG) h=h * 256 h / 12 h - 64 m=m * 256 m / 60 m - 64 s=s * 256 s / 60 s - 64 line(x,y, ccos(h) /3, csin(h) /3, SNEG) line(x,y, ccos(m) /3, csin(m) /3, SNEG) line(x,y, ccos(s) /3, csin(s) /3, RED) //////////////////////// делители fbox (-2, -46, 4, 4, RED) fbox (43, -2, 4, 4, RED) fbox (-2, 43, 4, 4, RED) fbox (-46, -2, 4, 4, RED) //////////////////////// делители transp (100) x = 0 y = 0 h = get_hours m = get_minutes s = get_seconds h=h * 256 h / 12 h - 64 m=m * 256 m / 60 m - 64 s=s * 256 s / 60 s - 64 line(x,y+100, ccos(h) /3, -(csin(h) /3)+100, SNEG) line(x,y+100, ccos(m) /3, -(csin(m) /3)+100, SNEG) line(x,y+100, ccos(s) /3, -(csin(s) /3)+100, RED) transp (255) frame(0) go clocks