fork download
  1. def cerc_triunghi():
  2. R = 6
  3. C.setXminXmaxYminYmax(-10, 10, -10, 10)
  4. C.fillScreen(Color.Whitesmoke)
  5.  
  6.  
  7. A = complex(-6, 0)
  8. B = complex(6, 0)
  9. D = complex(0, 6)
  10.  
  11.  
  12. centru = complex(0, 0)
  13. raza = R
  14.  
  15.  
  16. for z in C.screenAffixes():
  17. x, y = z.real, z.imag
  18.  
  19.  
  20. in_cerc = abs(z - centru) <= raza
  21.  
  22.  
  23. cond1 = (y - A.imag) * (B.real - A.real) - (x - A.real) * (B.imag - A.imag) > 0
  24. cond2 = (y - B.imag) * (D.real - B.real) - (x - B.real) * (D.imag - B.imag) > 0
  25. cond3 = (y - D.imag) * (A.real - D.real) - (x - D.real) * (A.imag - D.imag) > 0
  26. cond4 = (y - A.imag) * (B.real - A.real) - (x - A.real) * (B.imag - A.imag) < 0
  27. cond5 = (y - B.imag) * (D.real - B.real) - (x - B.real) * (D.imag - B.imag) < 0
  28. cond6 = (y - D.imag) * (A.real - D.real) - (x - D.real) * (A.imag - D.imag) < 0
  29.  
  30. in_triunghi = cond1 and cond2 and cond3
  31.  
  32.  
  33. if in_triunghi:
  34. col = Color.Yellow
  35. elif in_cerc and cond4:
  36. col = Color.Cyan
  37. elif in_cerc and cond5:
  38. col = Color.Magenta
  39. elif in_cerc and cond6:
  40. col = Color.Blueviolet
  41. elif not in_cerc and cond4 and cond2 and cond3:
  42. col = Color.Green
  43. elif not in_cerc and cond5 and cond1 and cond3:
  44. col = Color.Darkolivegreen
  45. elif not in_cerc and cond6 and cond1 and cond2:
  46. col = Color.Firebrick
  47. elif not in_cerc and cond1 and cond5 and cond6:
  48. col = Color.Orange
  49. elif not in_cerc and cond2 and cond4 and cond6:
  50. col = Color.Pink
  51. elif not in_cerc and cond3 and cond4 and cond5:
  52. col = Color.Ghostwhite
  53.  
  54. C.setPixel(z, col)
Success #stdin #stdout 0.05s 63460KB
stdin
Standard input is empty
stdout
Standard output is empty