Advertisement
houseofmath

Глушков Станислав ДЗ1(Asymptote) рисунок 1

Sep 16th, 2024
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Asymptote 1.10 KB | Source Code | 0 0
  1. import geometry;
  2. size(9cm, 0);
  3. defaultpen(fontsize(10pt));
  4. dotfactor = 6;
  5. point A,B,C,O;
  6. A=(0,0); B=6*dir(75); C=6*dir(0);
  7. triangle tABC = triangle(A,B,C);
  8. point L = bisectorpoint (tABC.AC);
  9. point Ep = bisectorpoint (tABC.BC);
  10. point K = foot(tABC.VB);
  11. O=intersectionpoint(line(A,Ep),line(B,L));
  12.  
  13. markangle(radius=0.5cm, n=2, A, B, L);
  14. markangle(radius=0.57cm, n=2, L, B, C);
  15. markangle(radius=0.5cm, n=1, C, A, Ep);
  16. markangle(radius=0.57cm, n=1, Ep, A, B);
  17. markrightangle(size=7, B, K, A);
  18. draw(B--L);
  19. draw(A--Ep);
  20. draw(B--K);
  21. draw(A--K^^K--L, white+opacity(0), StickIntervalMarker(1, 1, size=0.15cm));
  22. show(Lc="$6a$", Lb="", La= "", tABC);
  23.  
  24. dot(A^^B^^C^^L^^K^^O^^Ep, UnFill);
  25.  
  26. label("$O$", O, WNW);
  27. label("$E$", Ep, NE);
  28. label("$K$", K, NE);
  29. label("$L$", L, S);
  30. label(Label("$4a$", Relative(0.5), Rotate(dir(B--O)), align = NE), B--O);
  31. label(Label("$2a$", Relative(0.5), Rotate(dir(O--L)), align = NE), O--L);
  32. label(Label("$3a$", Relative(0.5), align = S), A--L);
  33. label(Label("$b$", Relative(0.5), align = S), C--L);
  34. label(Label("$2b$", Relative(0.6), Rotate(dir(B--C)), align = NE), B--C);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement