Skip to content

Commit faf6532

Browse files
committedDec 2, 2020
examples: added a longer pixelstring to the mandelbrot example
also it has a more interesting viewport
1 parent 2e69697 commit faf6532

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
 

‎Examples/mandelbrot.cal

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@ var yMax = 0.1;
55
var xMin = -1.5;
66
var xMax = -1.1;
77

8-
var pixelString = " .:;+=xX$&";
8+
yMin = 0.1120500000000000001100;
9+
yMax = 0.1133500000000000001100;
10+
xMin = -0.7461666666666666665900;
11+
xMax = -0.7444333333333333333000;
12+
13+
var pixelString = ".'`^\",:;Il!i><~+_-?][}{1)(|/tfjrxnuvczXYUJCLQ0OZmwqpdbkhao*#MW&8%B@$@B%8&WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\|()1{}[]?-_+~<>i!lI;:,\"^`'";
914
var yPixelMax = 50;
1015
var xPixelMax = 180;
11-
var maxIter = 200;
16+
var maxIter = 256;
1217

1318
foreach(var yPixel in 0 .. yPixelMax)
1419
{

0 commit comments

Comments
 (0)
Please sign in to comment.