Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. documentclass[convert]{standalone}
  2. usepackage{pgf}
  3. usepgflibrary{plothandlers}
  4. begin{document}
  5. begin{pgfpicture}
  6. pgfplothandlerrecord{mystream}
  7. pgfplotstreamstart
  8. pgfplotstreampoint{pgfpoint{1cm}{0cm}}
  9. pgfplotstreampoint{pgfpoint{2cm}{1cm}}
  10. pgfplotstreampoint{pgfpoint{3cm}{1cm}}
  11. pgfplotstreampoint{pgfpoint{1cm}{2cm}}
  12. pgfplotstreamend
  13.  
  14. pgfplothandlerlineto
  15. mystream
  16.  
  17. pgfplothandlerclosedcurve
  18. mystream
  19.  
  20. pgfusepath{stroke}
  21. end{pgfpicture}
  22. end{document}
  23.  
  24. pgfplothandlerrecord{<macro>}
  25. pgfplotstreamstart
  26. ...
  27. pgfplotstreamend
  28.  
  29. def<macro>{%
  30. pgfplotstreamstart
  31. ...
  32. pgfplotstreamend}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement