1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
\documentclass[border=5mm]{standalone}
\usepackage{animate}
\usepackage{pst-spirograph}
\begin{document}
\begin{animateinline}[
width=0.9\linewidth,
begin={\begin{pspicture}(-3.5,-3.5)(3.5,3.5)},
end={\end{pspicture}},
palindrome,controls,
% autoplay
]{5}
\multiframe{72}{rA=0.001+20.000}{%
\psSpirograph[thetamax=\rA,Z1=59,Z2=24,m=0.1,ap=10,curvewidth=1.5pt,
linewidth=0.025,fillstyle=solid,polarangle=\rA,holenumber=5,opacity=0.5](0,0)}
\end{animateinline}
\end{document}
|