Skip to content

Commit 637b35b

Browse files
committed
Equilateral
1 parent f8255b5 commit 637b35b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/sierpinski.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ typedef struct
88
} point;
99

1010
const int sx = 10; // Start X
11-
const int ex = 60; // End X
11+
const int ex = 100; // End X
1212
const int ty = 10; // Top Y
13-
const int by = 90; // Extended bottom Y
13+
const int by = 10; // Extended bottom Y
1414
const int my = 90; // Extended max Y
15-
const int iter = 1000; // Iterations
15+
const int iter = 2000; // Iterations
1616
const int mid = sx + (ex - sx) / 2;
1717

1818
point vx[3] = { {sx, ty}, {ex, ty}, {mid, 0} };

0 commit comments

Comments
 (0)