Advertisement
sutasuu

H2_pic5

Sep 19th, 2024
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Asymptote 0.77 KB | Source Code | 0 0
  1. import geometry;
  2. import patterns;
  3. size(9cm, 0);
  4. defaultpen(fontsize(8pt));
  5. dotfactor = 4;
  6. point A,B,C,Ep,D,O;
  7. A=origin; B=4*dir(75); C=4*dir(0); D=(A+C)/2;
  8. line e = bisector(line(A,C), line(B,C));
  9. Ep=intersectionpoint(e, line(A,B));
  10. O=intersectionpoint(B--D, Ep--C);
  11.  
  12. markangle(radius=0.3cm,B,C,Ep);
  13. markangle(radius=0.35cm,Ep,C,A);
  14.  
  15. add("diag", hatch(1mm, dir(45)));
  16. fill(A--Ep--O--D--cycle, pattern("diag"));
  17.  
  18. draw(B--D^^Ep--C);
  19.  
  20. draw(A--B--C--cycle);
  21.  
  22. dot(A^^Ep^^B^^C^^D^^O);
  23. label("$A$", A, S);
  24. label("$B$", B, N);
  25. label("$C$", C, S);
  26. label("$D$", D, S);
  27. label("$E$", Ep, WNW);
  28. label("$O$", O, NE);
  29. label(Label("$\frac{b}{2}$", Relative(0.5)), A--D);
  30. label(Label("$\frac{b}{2}$", Relative(0.5)), D--C);
  31. label(Label("$a$", Relative(0.5)), C--B);
  32.  
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement