Julia set: Difference between revisions

Content added Content deleted
Line 465:
=={{header|Julia}}==
 
The following code build a ppm file named julia.ppm. So there is no need of an external library to create the final image of the Julia set.
 
<lang julia>
Line 487:
</lang>
 
We can then produce a 800x600600x300 ppm image of the Julia set associated to the parameter ''-0.786+0.147i'' as follows.
 
<pre>writeppm(julia(-0.786+0.147im))</pre>