-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFractal_tree
125 lines (110 loc) · 2.08 KB
/
Fractal_tree
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<script>
hljs.configure({tabReplace: ' '});
hljs.initHighlightingOnLoad();
</script>
<pre>
<code class="processing">
import processing.pdf.*;
///*
float angle, a;
int circleW;
int count=0;
void setup() {
//size(700, 400,PDF,"fra.pdf");
size(700, 400);
circleW = 3; //circle joint weight
background(0);
}
void draw() {
background(0);
stroke(255);
//a =mouseX; //branch angle
a=30;
angle = radians(a);
translate(width/2, height);
line(0, 0, 0, -120);
translate(0, -120);
branch(200);
println(count);
saveFrame("fractal.jpg");
exit();
}
void branch(float h) {
h *= 0.6;
//bHeight=h;
//mousePressed==true;
if (h>60) {//make change here!!!using 110, 60, 40, 10
count++;
pushMatrix();
rotate(angle*2);
line(0, 0, 0, -h);
ellipse(0, -h, circleW, circleW);
translate(0, -h);
branch(h);//recursive here
popMatrix();
pushMatrix();
rotate(angle);
line(0, 0, 0, -h);
ellipse(0, -h, circleW, circleW);
translate(0, -h);
branch(h);//recursive here
popMatrix();
pushMatrix();
rotate(-angle);
line(0, 0, 0, -h);
ellipse(0, -h, circleW, circleW);
translate(0, -h);
branch(h);//recursive here
popMatrix();
pushMatrix();
rotate(-angle*2);
line(0, 0, 0, -h);
ellipse(0, -h, circleW, circleW);
translate(0, -h);
branch(h);//recursive here
popMatrix();
}
}
//*/
//Koch
/*
void setup() {
size(300, 300);
translate(45, 85);
background(55);
stroke(255);
noFill();
String str = "F-F+F-F";
float l = 70;
for (int i=0; i<5; i++) {
String temp = "";
for (int j=0; j<str.length (); j++) {
char c = str.charAt(j);
if (c == 'F') {
temp += "F-F+F-F";
} else {
temp += c;
}
}
str = temp;
l /= 3;
}
for (int i=0; i<3; i++) {
for (int j=0; j<str.length (); j++) {
char c = str.charAt(j);
if (c == 'F') {
line(0, 0, l, 0);
translate(l, 0);
} else if (c == '-') {
rotate(-PI/3);
} else if (c == '+') {
rotate(TWO_PI/3);
}
}
rotate(TWO_PI/3);
}
}
*/
</code>
</pre>