Julia set: Difference between revisions

Line 1,372:
[https://easylang.online/apps/julia-set.html Run it]
 
<syntaxhighlight lang="text">cx = -0.7
cx = -0.7
cy = 0.27015
for y range= 3000 to 299
for x range= 3000 to 299
zx = (x - 150) / 100
zy = (y - 150) / 150
color3 0 0 0
for iter range= 1280 to 127
if zx * zx + zy * zy > 4
color3 iter / 16 0 0
Line 1,391 ⟶ 1,392:
rect 0.4 0.4
.
.
.</syntaxhighlight>
 
=={{header|Elixir}}==
2,052

edits