-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKoch Curve.c
More file actions
51 lines (43 loc) · 1.08 KB
/
Koch Curve.c
File metadata and controls
51 lines (43 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//Koch Curve Algorithm
#include <graphics.h>
#include <conio.h>
#include <math.h>
void koch(int x1, int y1, int x2, int y2, int it)
{
float angle = 60 * M_PI / 180;
int x3 = (2 * x1 + x2) / 3;
int y3 = (2 * y1 + y2) / 3;
int x4 = (x1 + 2 * x2) / 3;
int y4 = (y1 + 2 * y2) / 3;
int x = x3 + (x4 - x3) * cos(angle) + (y4 - y3) * sin(angle);
int y = y3 - (x4 - x3) * sin(angle) + (y4 - y3) * cos(angle);
if(it > 0)
{
koch(x1, y1, x3, y3, it - 1);
koch(x3, y3, x, y, it - 1);
koch(x, y, x4, y4, it - 1);
koch(x4, y4, x2, y2, it - 1);
}
else
{
line(x1, y1, x3, y3);
line(x3, y3, x, y);
line(x, y, x4, y4);
line(x4, y4, x2, y2);
}
}
int main(void)
{
int gd = DETECT, gm, i, n;
int x1 = 100, y1 = 100, x2 = 400, y2 = 400;
initgraph(&gd, &gm, "C:\\TC\\BGI");
printf("Enter number of iterations: ");
scanf("%d", &n);
for(i = 0; i < n; i++)
{
cleardevice();
koch(x1, y1, x2, y2, i);
getch();
}
return 0;
}