Guest User

Untitled

a guest
Dec 13th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. begin {scope}[color=OrangeD]
  2. draw [-] plot[smooth, tension=.7] coordinates {(-5.25,1) (-5.15,1.15) (-4.8,1.3) (-4.6,1.6) (-4.3,1.7) (-4.05,2.05) (-3.75,2.1)};
  3. draw [-](-3.9,2.3) node (v2) {} -- +(0.55,-0.05) -- +(0.5,-0.65) -- +(0.35,-0.45) node (v1) {};
  4. draw [-] plot[smooth, tension=.7] coordinates {(v1) (-3.8,1.8) (-4.05,1.45) (-4.35,1.35) (-4.5,1.05) (-4.9,0.9) (-5.05,0.65)};
  5. draw [-](-3.75,2.1)--(-3.9,2.3);
  6. end{scope}
  7.  
  8. documentclass[border=5mm]{standalone}
  9. usepackage{tikz}
  10. begin{document}
  11. begin{tikzpicture}
  12. begin {scope}[draw=orange,fill=blue,ultra thick]
  13. draw (0,0) rectangle ++(1,0.5) node [below right] {texttt{textbackslash draw}};
  14. fill (0,-1) rectangle ++(1,0.5) node [below right] {texttt{textbackslash fill}};
  15. filldraw (0,-2) rectangle ++(1,0.5) node [below right] {texttt{textbackslash filldraw}};
  16. end{scope}
  17. end{tikzpicture}
  18. end{document}
  19.  
  20. begin {scope}[
  21. every path/.append style={draw=orange,fill=blue},
  22. ultra thick,xshift=3cm]
  23. draw (0,0) rectangle ++(1,0.5) node [below right] {texttt{textbackslash draw}};
  24. fill (0,-1) rectangle ++(1,0.5) node [below right] {texttt{textbackslash fill}};
  25. filldraw (0,-2) rectangle ++(1,0.5) node [below right] {texttt{textbackslash filldraw}};
  26. end{scope}
  27.  
  28. filldraw [draw=orange,fill=blue]
  29. plot[smooth, tension=.7] coordinates {(-5.25,1) (-5.15,1.15) (-4.8,1.3) (-4.6,1.6) (-4.3,1.7) (-4.05,2.05) (-3.75,2.1)}
  30. --(-3.9,2.3) node (v2) {} -- +(0.55,-0.05) -- +(0.5,-0.65) -- +(0.35,-0.45) node (v1) {}
  31. -- plot[smooth, tension=.7] coordinates {(v1) (-3.8,1.8) (-4.05,1.45) (-4.35,1.35) (-4.5,1.05) (-4.9,0.9) (-5.05,0.65)};
Add Comment
Please, Sign In to add comment