Archimedean spiral: Difference between revisions

Content deleted Content added
imported>Maxima enthusiast
No edit summary
Chkas (talk | contribs)
Easylang
Line 1,106: Line 1,106:
<pre>
<pre>
</pre>
</pre>

=={{header|EasyLang}}==

[https://easylang.dev/show/#cod=JYxBCoAgFET3/xSzThALapWnKaEPpqCSevv8tZp5w8x4Dq7yWS4YvVCDxWqo/3LHx6GhU73YOyTskgLwYzRwwhEzCtQoCWUOH3XpJCg7PmfxRfxGml4= Run it]

<syntaxhighlight lang="easylang">
linewidth 0.2
x = 50
y = 50
move x y
while r < 50
line r * cos t + x r * sin t + y
r += 0.1
t += 6
.
</syntaxhighlight>


=={{header|FOCAL}}==
=={{header|FOCAL}}==