
答え1
TeX.SE へようこそ!!!
perspective
あなたの写真は私には遠近法のように見えますので、これはライブラリ(フォームTi)を使用したソリューションですけZ)、およびisometric view
、など。
このようなもの:
\documentclass[tikz,border=2mm]{standalone}
\usetikzlibrary{perspective}
\begin{document}
\begin{tikzpicture}[isometric view]
\draw plot [domain=0:7200,samples=2000] ({\x/360*cos(\x)},{\x/360*sin(\x)});
\end{tikzpicture}
\end{document}
答え2
純粋に比較のために、メタポスト"一発ギャグ"。
\documentclass[border=5mm]{standalone}
\usepackage{luamplib}
\begin{document}
\begin{mplibcode}
beginfig(1);
draw (origin for i=1 upto 129: .. (i, 0) rotated 45i endfor) yscaled 1/2;
endfig;
\end{mplibcode}
\end{document}
これを取得するには、 をコンパイルしますlualatex
。
答え3
このようなことから始めて、改善していただけますか?
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw [rotate=-45]
plot[domain=0:25.1327,variable=\t,smooth,samples=75] ({\t r}: {0.002*\t*\t} and {0.004*\t*\t} );
\end{tikzpicture}
\begin{tikzpicture}
\draw [rotate=45]
plot[domain=0:25.1327,variable=\t,smooth,samples=75] ({\t r}: {0.002*\t*\t} and {0.004*\t*\t} );
\end{tikzpicture}
\end{document}