Advertisement
houseofmath

Лозовский Даниил ДЗ1(Asymptote) рисунок 2

Sep 16th, 2024
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Asymptote 0.46 KB | Source Code | 0 0
  1. import geometry;
  2. defaultpen(fontsize(12pt));
  3. dotfactor=5;
  4. size(9cm,0);
  5. point A, B, C, A1, B1, C1;
  6. C=(0,0); B=2*dir(75); A=3*dir(0);
  7.  
  8. A1=point(C--B, 1/3);
  9. B1=point(B--A, 1/3);
  10. C1=point(A--C, 1/3);
  11.  
  12. fill(A1--B1--C1--cycle,  white+0.1blue);
  13. draw(A--B--C--cycle);
  14. draw(A1--B1--C1--cycle);
  15.  
  16. dot(A^^B^^C^^A1^^B1^^C1);
  17.  
  18. label("$A$", A, SE);
  19. label("$B$", B, NW);
  20. label("$C$", C, SW);
  21. label("$A_1$", A1, W);
  22. label("$B_1$", B1, NE);
  23. label("$C_1$", C1, S);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement