Posts

Showing posts from December 10, 2018

Draw a spiral like an ellipse

Image
up vote 6 down vote favorite I am trying to draw the following diagram in latex: I find the following command : documentclass{article} usepackage{tikz} begin{document} begin{tikzpicture} draw [domain=0:25.1327,variable=t,smooth,samples=75] plot ({t r}: {0.002*t*t}); end{tikzpicture} end{document} But it's like a circle. Can anyone help me? tikz-pgf share | improve this question edited 1 hour ago Stefan Pinnow 19.2k 8 31 75 asked 8 hours ago Mohamma...