Advertisement
Guest User

Untitled

a guest
Oct 1st, 2019
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. pts = CirclePoints[4];
  2. col = ColorData["Pastel"][0.8];
  3. Table[
  4. Graphics[
  5. {
  6. {FaceForm[col],
  7. EdgeForm@Directive[col, Thickness[0.15], JoinForm["Round"]],
  8. Polygon[pts[[set]]]},
  9. {Black, PointSize[0.07], Point[pts]}
  10. }, Frame -> True, PlotRangePadding -> Scaled[.1], FrameTicks -> None
  11. ],
  12. {set, Subsets[Range[4], {1, 3}]}
  13. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement