Guest User

Untitled

a guest
Nov 13th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. documentclass[tikz,border=3.14mm]{standalone}
  2. usetikzlibrary{shapes.arrows}
  3. begin{document}
  4. begin{tikzpicture}
  5. begin{scope}[local bounding box=left]
  6. foreach X [count=Y] in {green!60!black,yellow!80!orange,red}
  7. {draw[X] plot[variable=x,domain=0:1] ({2*x},{0.7*sin(x*540)+0.4*x+2*(2-Y)});}
  8. end{scope}
  9. begin{scope}[xshift=5cm,local bounding box=right]
  10. foreach X [count=Y] in {green!60!black,yellow!80!orange,red}
  11. {draw[X] plot[variable=x,domain=0:1]
  12. ({2.5*x+0.5*cos(x*200)},{-0.7*sin(x*540)+2*(2-Y)});}
  13. end{scope}
  14. path (left.east) -- (right.west)
  15. node[midway,font=sffamily,single arrow, draw]{randomize};
  16. end{tikzpicture}
  17. end{document}
Add Comment
Please, Sign In to add comment