Skip to content

Commit ba7a2aa

Browse files
authored
Merge pull request #40 from ruifonseca/fix_mandelbrot_example_proportions
Adjust Mandelbrot proportions
2 parents ccda5bb + 82c6d25 commit ba7a2aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/mandelbrot.psh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ let HEIGHT = 480;
99
// The region of the complex plane to render
1010
let RE_START = -2.0;
1111
let RE_END = 1.0;
12-
let IM_START = -1.0;
13-
let IM_END = 1.0;
12+
let IM_START = -1.125;
13+
let IM_END = 1.125;
1414

1515
let MAX_ITER = 60;
1616

0 commit comments

Comments
 (0)