forked from mrdoob/texgen.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoise.html
232 lines (178 loc) · 7.85 KB
/
noise.html
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
@import url(http://fonts.googleapis.com/css?family=Lato:400);
body {
background-color: rgb(16, 18, 23);
color: rgb(200, 228, 255);
font-family: Lato, sans-serif;
text-align: center;
}
#noise > div {
margin: 20px;
display: inline-block;
}
canvas {
border: 1px solid #202227;
margin: auto;
}
p {
color: rgb(198, 222, 255);
background: rgba(211, 255, 247, 0.1);
margin: 5px 0 0;
padding: 10px;
min-height: 1em;
}
h1 {
font-size: 40px;
}
</style>
</head>
<body>
<h1>Fractal Noise</h1>
<h2 id="render">Rendering page content... </h2>
<h5 id="hint"></h5>
<div id="noise"></div>
<script type="text/javascript" src="../src/TexGen.js"></script>
<script>
TG.Texture.prototype.addToPage = function (desc) {
var div = document.createElement("div");
var p = document.createElement("p");
p.innerHTML = desc;
div.appendChild(this.toCanvas() );
div.appendChild(p);
noise.appendChild(div);
return div;
}
function render() {
var noise = document.getElementById("noise");
var pageStatus = document.getElementById("render");
var hint = document.getElementById("hint");
var seed = Date.now();
//---------------------------------------------------------
new TG.Texture(200, 200)
.set(new TG.FractalNoise().seed(seed).baseFrequency(20).octaves(1).amplitude(0.5) )
.addToPage("Base Frequency");
new TG.Texture(200, 200)
.set(new TG.FractalNoise().seed(seed * 2).baseFrequency(10).octaves(1).amplitude(0.25) )
.addToPage("+ Octave");
new TG.Texture(200, 200)
.set(new TG.FractalNoise().seed(seed * 3).baseFrequency(5).octaves(1).amplitude(0.125) )
.addToPage("+ Octave");
var spacing = new TG.Texture(200, 200)
.set(new TG.FractalNoise().seed(seed).baseFrequency(20).octaves(3).step(2).amplitude(0.5).persistence(0.5) )
.addToPage("= Fractal Noise");
spacing.style.margin = "20px 20px 80px";
line = document.createElement("br");
noise.appendChild(line);
//---------------------------------------------------------
var amp = [0.32, 0.42, 0.32, 0.42];
var prs = [0.78, 0.78, 0.68, 0.68];
for (var i = 0; i < 4; i++) {
new TG.Texture(200, 200)
.set(new TG.FractalNoise().seed(seed).baseFrequency(200).octaves(8).step(2).amplitude(amp[i]).persistence(prs[i]) )
.addToPage("No Interpolation<br/>Amplitude: " + amp[i] + "<br/>Persistence: " + prs[i]);
}
var line = document.createElement("br");
noise.appendChild(line);
for (var i = 0; i < 4; i++) {
new TG.Texture(200, 200)
.set(new TG.FractalNoise().seed(seed).baseFrequency(200).octaves(8).step(2).amplitude(amp[i]).persistence(prs[i]).interpolation(1) )
.addToPage("Linear Interpolation<br/>Amplitude: " + amp[i] + "<br/>Persistence: " + prs[i]);
}
line = document.createElement("br");
noise.appendChild(line);
for (var i = 0; i < 4; i++) {
new TG.Texture(200, 200)
.set(new TG.FractalNoise().seed(seed).baseFrequency(200).octaves(8).step(2).amplitude(amp[i]).persistence(prs[i]).interpolation(2) )
.addToPage("Spline Interpolation<br/>Amplitude: " + amp[i] + "<br/>Persistence: " + prs[i]);
}
line = document.createElement("br");
noise.appendChild(line);
//---------------------------------------------------------
new TG.Texture(25, 25)
.set(new TG.FractalNoise().seed(seed).baseFrequency(200).octaves(8).step(2) )
.addToPage("25px →");
new TG.Texture(50, 50)
.set(new TG.FractalNoise().seed(seed).baseFrequency(200).octaves(8).step(2) )
.add(new TG.Rect().size(0, 25).position(25, 0).tint(10, -10, -10) )
.add(new TG.Rect().size(25, 0).position(0, 25).tint(10, -10, -10) )
.addToPage("50px →");
new TG.Texture(100, 100)
.set(new TG.FractalNoise().seed(seed).baseFrequency(200).octaves(8).step(2) )
.add(new TG.Rect().size(0, 50).position(50, 0).tint(10, -10, -10) )
.add(new TG.Rect().size(50, 0).position(0, 50).tint(10, -10, -10) )
.addToPage("100px →");
spacing = new TG.Texture(200, 200)
.set(new TG.FractalNoise().seed(seed).baseFrequency(200).octaves(8).step(2) )
.add(new TG.Rect().size(0, 100).position(100, 0).tint(10, -10, -10) )
.add(new TG.Rect().size(100, 0).position(0, 100).tint(10, -10, -10) )
.addToPage("200px <br/> (width and height independent)");
spacing.style.margin = "80px 20px 20px";
line = document.createElement("br");
noise.appendChild(line);
new TG.Texture(100, 100)
.set(new TG.Noise().seed(seed) )
.addToPage("100px →");
spacing = new TG.Texture(200, 200)
.set(new TG.Noise().seed(seed) )
.add(new TG.Rect().size(0, 100).position(100, 0).tint(10, -10, -10) )
.add(new TG.Rect().size(100, 0).position(0, 100).tint(10, -10, -10) )
.addToPage("200px <br/> (also works with regular noise)");
spacing.style.margin = "20px 20px 80px";
line = document.createElement("br");
noise.appendChild(line);
//---------------------------------------------------------
size = 256;
new TG.Texture(size, size)
.set(new TG.FractalNoise().baseFrequency(20).persistence(0.75).amplitude(0.4).interpolation(2).tint(0.75, 0.95, 1) )
.add(new TG.FractalNoise().baseFrequency(4).octaves(3).interpolation(1).tint(0.25, 0.35, 0.85) )
.sub(new TG.Twirl().radius(size * 3).strength(1.5).position(size/2, size/2) )
.mul(new TG.Circle().radius(size * 1.1).position(size/2, size/2).delta(size) )
.addToPage("Example 1");
new TG.Texture(size, size)
.set(new TG.FractalNoise().baseFrequency(20).persistence(0.75).amplitude(0.4).interpolation(0).tint(0.7, 0.9, 0.95) )
.add(new TG.FractalNoise().baseFrequency(4).octaves(3).interpolation(0).tint(0.2, 0.3, 0.8) )
.sub(new TG.Twirl().radius(size * 3).strength(1.5).position(size/2, size/2) )
.mul(new TG.Circle().radius(size * 1.1).position(size/2, size/2).delta(size) )
.addToPage("Example 1 (no interpolation)");
line = document.createElement("br");
noise.appendChild(line);
new TG.Texture(size, size)
.set(new TG.FractalNoise().baseFrequency(64).octaves(6).step(2).interpolation(2) )
.sub(new TG.Noise().tint(0, 0.1, 0) )
.min(new TG.Number().tint(0, 0.6, 0) )
.sub(new TG.Number().tint(0, 0.5, 0) )
.mul(new TG.Number().tint(0, 5, 0) )
.sub(new TG.SineDistort().sines(2, 2).amplitude(8, 8).tint(0, 0.75, 0) )
.add(new TG.Number().tint(0.06, 0, 0.085) )
.addToPage("Example 2");
new TG.Texture(size, size)
.set(new TG.FractalNoise().baseFrequency(128).octaves(6).step(2).interpolation(2) )
.sub(new TG.Noise().tint(0, 0.1, 0) )
.min(new TG.Number().tint(0, 0.63, 0) )
.sub(new TG.Number().tint(0, 0.53, 0) )
.mul(new TG.Number().tint(0, 6, 0) )
.sub(new TG.SineDistort().sines(2, 2).amplitude(4, 4).tint(0, 0.75, 0) )
.add(new TG.Number().tint(0.065, 0, 0.095) )
.addToPage("Example 2 (less distortion)");
line = document.createElement("br");
noise.appendChild(line);
new TG.Texture(size, size)
.set(new TG.FractalNoise().baseFrequency(64).octaves(6).step(2).interpolation(2).tint(1, 0.17, 0.32) )
.sub(new TG.Noise().tint(0.2, 0.08, 0.03) )
.mul(new TG.XOR().tint(1.5, 1.62, 1.69) )
.addToPage("Example 3 (xor)");
new TG.Texture(size, size)
.set(new TG.FractalNoise().baseFrequency(64).octaves(6).step(2).interpolation(2).tint(1, 0.17, 0.32) )
.sub(new TG.Noise().tint(0.2, 0.08, 0.03) )
.mul(new TG.FractalNoise().octaves(2).baseFrequency(size/4).step(1.7).interpolation(0).amplitude(0.6).persistence(0.6).tint(1.5, 1.62, 1.69) )
.addToPage("Example 3 (noise)");
pageStatus.innerHTML = "Seed: " + seed;
hint.innerHTML = "(reload page for new pattern)";
};
setTimeout(render, 500);
</script>
</body>
</html>