-
Notifications
You must be signed in to change notification settings - Fork 13
/
makenoise.bat
336 lines (262 loc) · 29.2 KB
/
makenoise.bat
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
@echo off
rem Set random seed. the version rem'd out makes it non deterministic.
rem set "seedcmd="
set "seedcmd=-seed 5489"
rem texture sizes
set /A width=128
set /A height=128
set /A depth=32
rem y to make a noise type, blank to not
set "spatial_real="
set "spatial_circle="
set "spatial_vector2="
set "spatial_vector3="
set "spatial_sphere="
set "spatial_coshemi="
set "temporal_real_exp="
set "temporal_real_gauss="
set "temporal_circle_exp="
set "temporal_circle_gauss="
set "temporal_vector2_exp="
set "temporal_vector2_gauss="
set "temporal_vector3_exp="
set "temporal_vector3_gauss="
set "temporal_sphere_exp="
set "temporal_coshemi_exp="
set "temporal_sphere_gauss="
set "temporal_coshemi_gauss="
set "temporalonly_coshemi="
rem ============================ SPATIAL REAL ============================
if not defined spatial_real (goto skip_spatial_real)
if not exist "out/real" mkdir "out/real"
FastNoise.exe real Uniform Box 3 Box 1 product %width% %height% 1 out/real/real_uniform_box3x3 %seedcmd%
FastNoise.exe real Uniform Box 5 Box 1 product %width% %height% 1 out/real/real_uniform_box5x5 %seedcmd%
FastNoise.exe real Uniform Gauss 1.0 Box 1 product %width% %height% 1 out/real/real_uniform_gauss1_0 %seedcmd%
FastNoise.exe real Uniform Binomial 2 Box 1 product %width% %height% 1 out/real/real_uniform_binomial3x3 %seedcmd%
FastNoise.exe real Uniform Binomial 4 Box 1 product %width% %height% 1 out/real/real_uniform_binomial5x5 %seedcmd%
FastNoise.exe real Tent Box 3 Box 1 product %width% %height% 1 out/real/real_tent_box3x3 %seedcmd%
FastNoise.exe real Tent Box 5 Box 1 product %width% %height% 1 out/real/real_tent_box5x5 %seedcmd%
FastNoise.exe real Tent Gauss 1.0 Box 1 product %width% %height% 1 out/real/real_tent_gauss1_0 %seedcmd%
FastNoise.exe real Tent Binomial 2 Box 1 product %width% %height% 1 out/real/real_tent_binomial3x3 %seedcmd%
FastNoise.exe real Tent Binomial 4 Box 1 product %width% %height% 1 out/real/real_tent_binomial5x5 %seedcmd%
:skip_spatial_real
rem ============================ SPATIAL CIRCLE ============================
if not defined spatial_circle (goto skip_spatial_circle)
if not exist "out/real" mkdir "out/real"
FastNoise.exe circle Uniform Box 3 Box 1 product %width% %height% 1 out/real/circle_uniform_box3x3 %seedcmd%
FastNoise.exe circle Uniform Box 5 Box 1 product %width% %height% 1 out/real/circle_uniform_box5x5 %seedcmd%
FastNoise.exe circle Uniform Gauss 1.0 Box 1 product %width% %height% 1 out/real/circle_uniform_gauss1_0 %seedcmd%
FastNoise.exe circle Uniform Binomial 2 Box 1 product %width% %height% 1 out/real/circle_uniform_binomial3x3 %seedcmd%
FastNoise.exe circle Uniform Binomial 4 Box 1 product %width% %height% 1 out/real/circle_uniform_binomial5x5 %seedcmd%
:skip_spatial_circle
rem ============================ SPATIAL VECTOR2 ============================
if not defined spatial_vector2 (goto skip_spatial_vector2)
if not exist "out/vector2" mkdir "out/vector2"
FastNoise.exe vector2 Uniform Box 3 Box 1 product %width% %height% 1 out/vector2/vector2_uniform_box3x3 %seedcmd%
FastNoise.exe vector2 Uniform Box 5 Box 1 product %width% %height% 1 out/vector2/vector2_uniform_box5x5 %seedcmd%
FastNoise.exe vector2 Uniform Gauss 1.0 Box 1 product %width% %height% 1 out/vector2/vector2_uniform_gauss1_0 %seedcmd%
FastNoise.exe vector2 Uniform Binomial 2 Box 1 product %width% %height% 1 out/vector2/vector2_uniform_binomial3x3 %seedcmd%
FastNoise.exe vector2 Uniform Binomial 4 Box 1 product %width% %height% 1 out/vector2/vector2_uniform_binomial5x5 %seedcmd%
:skip_spatial_vector2
rem ============================ SPATIAL VECTOR3 ============================
if not defined spatial_vector3 (goto skip_spatial_vector3)
if not exist "out/vector3" mkdir "out/vector3"
FastNoise.exe vector3 Uniform Box 3 Box 1 product %width% %height% 1 out/vector3/vector3_uniform_box3x3 %seedcmd%
FastNoise.exe vector3 Uniform Box 5 Box 1 product %width% %height% 1 out/vector3/vector3_uniform_box5x5 %seedcmd%
FastNoise.exe vector3 Uniform Gauss 1.0 Box 1 product %width% %height% 1 out/vector3/vector3_uniform_gauss1_0 %seedcmd%
FastNoise.exe vector3 Uniform Binomial 2 Box 1 product %width% %height% 1 out/vector3/vector3_uniform_binomial3x3 %seedcmd%
FastNoise.exe vector3 Uniform Binomial 4 Box 1 product %width% %height% 1 out/vector3/vector3_uniform_binomial5x5 %seedcmd%
:skip_spatial_vector3
rem ============================ SPATIAL SPHERE ============================
if not defined spatial_sphere (goto skip_spatial_sphere)
if not exist "out/sphere" mkdir "out/sphere"
FastNoise.exe sphere Uniform Box 3 Box 1 product %width% %height% 1 out/sphere/sphere_uniform_box3x3 %seedcmd%
FastNoise.exe sphere Uniform Box 5 Box 1 product %width% %height% 1 out/sphere/sphere_uniform_box5x5 %seedcmd%
FastNoise.exe sphere Uniform Gauss 1.0 Box 1 product %width% %height% 1 out/sphere/sphere_uniform_gauss1_0 %seedcmd%
FastNoise.exe sphere Uniform Binomial 2 Box 1 product %width% %height% 1 out/sphere/sphere_uniform_binomial3x3 %seedcmd%
FastNoise.exe sphere Uniform Binomial 4 Box 1 product %width% %height% 1 out/sphere/sphere_uniform_binomial5x5 %seedcmd%
:skip_spatial_sphere
rem ============================ SPATIAL COSINE HEMISPHERE ============================
if not defined spatial_coshemi (goto skip_spatial_coshemi)
if not exist "out/sphere" mkdir "out/sphere"
FastNoise.exe sphere Cosine Box 3 Box 1 product %width% %height% 1 out/sphere/sphere_coshemi_box3x3 %seedcmd%
FastNoise.exe sphere Cosine Box 5 Box 1 product %width% %height% 1 out/sphere/sphere_coshemi_box5x5 %seedcmd%
FastNoise.exe sphere Cosine Gauss 1.0 Box 1 product %width% %height% 1 out/sphere/sphere_coshemi_gauss1_0 %seedcmd%
FastNoise.exe sphere Cosine Binomial 2 Box 1 product %width% %height% 1 out/sphere/sphere_coshemi_binomial3x3 %seedcmd%
FastNoise.exe sphere Cosine Binomial 4 Box 1 product %width% %height% 1 out/sphere/sphere_coshemi_binomial5x5 %seedcmd%
:skip_spatial_coshemi
rem ============================ TEMPORAL REAL EXP ============================
if not defined temporal_real_exp (goto skip_temporal_real_exp)
if not exist "out/real/temporal/exp/" mkdir "out/real/temporal/exp/"
FastNoise.exe real Uniform Box 3 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/real_uniform_box3x3_exp0101_product -split %seedcmd%
FastNoise.exe real Uniform Box 5 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/real_uniform_box5x5_exp0101_product -split %seedcmd%
FastNoise.exe real Uniform Gauss 1.0 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/real_uniform_gauss1_0_exp0101_product -split %seedcmd%
FastNoise.exe real Uniform Binomial 2 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/real_uniform_binomial3x3_exp0101_product -split %seedcmd%
FastNoise.exe real Uniform Binomial 4 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/real_uniform_binomial5x5_exp0101_product -split %seedcmd%
FastNoise.exe real Uniform Box 3 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/real_uniform_box3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe real Uniform Box 5 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/real_uniform_box5x5_exp0101_separate05 -split %seedcmd%
FastNoise.exe real Uniform Gauss 1.0 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/real_uniform_gauss1_0_exp0101_separate05 -split %seedcmd%
FastNoise.exe real Uniform Binomial 2 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/real_uniform_binomial3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe real Uniform Binomial 4 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/real_uniform_binomial5x5_exp0101_separate05 -split %seedcmd%
:skip_temporal_real_exp
rem ============================ TEMPORAL REAL GAUSS ============================
if not defined temporal_real_gauss (goto skip_temporal_real_gauss)
if not exist "out/real/temporal/gauss/" mkdir "out/real/temporal/gauss/"
FastNoise.exe real Uniform Box 3 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/real_uniform_box3x3_Gauss10_product -split %seedcmd%
FastNoise.exe real Uniform Box 5 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/real_uniform_box5x5_Gauss10_product -split %seedcmd%
FastNoise.exe real Uniform Gauss 1.0 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/real_uniform_gauss1_0_Gauss10_product -split %seedcmd%
FastNoise.exe real Uniform Binomial 2 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/real_uniform_binomial3x3_Gauss10_product -split %seedcmd%
FastNoise.exe real Uniform Binomial 4 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/real_uniform_binomial5x5_Gauss10_product -split %seedcmd%
FastNoise.exe real Uniform Box 3 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/real_uniform_box3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe real Uniform Box 5 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/real_uniform_box5x5_Gauss10_separate05 -split %seedcmd%
FastNoise.exe real Uniform Gauss 1.0 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/real_uniform_gauss1_0_Gauss10_separate05 -split %seedcmd%
FastNoise.exe real Uniform Binomial 2 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/real_uniform_binomial3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe real Uniform Binomial 4 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/real_uniform_binomial5x5_Gauss10_separate05 -split %seedcmd%
:skip_temporal_real_gauss
rem ============================ TEMPORAL CIRCLE EXP ============================
if not defined temporal_circle_exp (goto skip_temporal_circle_exp)
if not exist "out/real/temporal/exp/" mkdir "out/real/temporal/exp/"
FastNoise.exe circle Uniform Box 3 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/circle_uniform_box3x3_exp0101_product -split %seedcmd%
FastNoise.exe circle Uniform Box 5 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/circle_uniform_box5x5_exp0101_product -split %seedcmd%
FastNoise.exe circle Uniform Gauss 1.0 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/circle_uniform_gauss1_0_exp0101_product -split %seedcmd%
FastNoise.exe circle Uniform Binomial 2 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/circle_uniform_binomial3x3_exp0101_product -split %seedcmd%
FastNoise.exe circle Uniform Binomial 4 exponential 0.1 0.1 product %width% %height% %depth% out/real/temporal/exp/circle_uniform_binomial5x5_exp0101_product -split %seedcmd%
FastNoise.exe circle Uniform Box 3 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/circle_uniform_box3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe circle Uniform Box 5 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/circle_uniform_box5x5_exp0101_separate05 -split %seedcmd%
FastNoise.exe circle Uniform Gauss 1.0 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/circle_uniform_gauss1_0_exp0101_separate05 -split %seedcmd%
FastNoise.exe circle Uniform Binomial 2 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/circle_uniform_binomial3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe circle Uniform Binomial 4 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/real/temporal/exp/circle_uniform_binomial5x5_exp0101_separate05 -split %seedcmd%
:skip_temporal_circle_exp
rem ============================ TEMPORAL CIRCLE GAUSS ============================
if not defined temporal_circle_gauss (goto skip_temporal_circle_gauss)
if not exist "out/real/temporal/gauss/" mkdir "out/real/temporal/gauss/"
FastNoise.exe circle Uniform Box 3 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/circle_uniform_box3x3_Gauss10_product -split %seedcmd%
FastNoise.exe circle Uniform Box 5 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/circle_uniform_box5x5_Gauss10_product -split %seedcmd%
FastNoise.exe circle Uniform Gauss 1.0 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/circle_uniform_gauss1_0_Gauss10_product -split %seedcmd%
FastNoise.exe circle Uniform Binomial 2 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/circle_uniform_binomial3x3_Gauss10_product -split %seedcmd%
FastNoise.exe circle Uniform Binomial 4 gauss 1.0 product %width% %height% %depth% out/real/temporal/gauss/circle_uniform_binomial5x5_Gauss10_product -split %seedcmd%
FastNoise.exe circle Uniform Box 3 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/circle_uniform_box3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe circle Uniform Box 5 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/circle_uniform_box5x5_Gauss10_separate05 -split %seedcmd%
FastNoise.exe circle Uniform Gauss 1.0 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/circle_uniform_gauss1_0_Gauss10_separate05 -split %seedcmd%
FastNoise.exe circle Uniform Binomial 2 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/circle_uniform_binomial3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe circle Uniform Binomial 4 gauss 1.0 separate 0.5 %width% %height% %depth% out/real/temporal/gauss/circle_uniform_binomial5x5_Gauss10_separate05 -split %seedcmd%
:skip_temporal_circle_gauss
rem ============================ TEMPORAL VECTOR2 EXP ============================
if not defined temporal_vector2_exp (goto skip_temporal_vector2_exp)
if not exist "out/vector2/temporal/exp/" mkdir "out/vector2/temporal/exp/"
FastNoise.exe vector2 Uniform Box 3 exponential 0.1 0.1 product %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_box3x3_exp0101_product -split %seedcmd%
FastNoise.exe vector2 Uniform Box 5 exponential 0.1 0.1 product %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_box5x5_exp0101_product -split %seedcmd%
FastNoise.exe vector2 Uniform Gauss 1.0 exponential 0.1 0.1 product %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_gauss1_0_exp0101_product -split %seedcmd%
FastNoise.exe vector2 Uniform Binomial 2 exponential 0.1 0.1 product %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_binomial3x3_exp0101_product -split %seedcmd%
FastNoise.exe vector2 Uniform Binomial 4 exponential 0.1 0.1 product %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_binomial5x5_exp0101_product -split %seedcmd%
FastNoise.exe vector2 Uniform Box 3 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_box3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe vector2 Uniform Box 5 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_box5x5_exp0101_separate05 -split %seedcmd%
FastNoise.exe vector2 Uniform Gauss 1.0 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_gauss1_0_exp0101_separate05 -split %seedcmd%
FastNoise.exe vector2 Uniform Binomial 2 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_binomial3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe vector2 Uniform Binomial 4 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector2/temporal/exp/vector2_uniform_binomial5x5_exp0101_separate05 -split %seedcmd%
:skip_temporal_vector2_exp
rem ============================ TEMPORAL VECTOR2 GAUSS ============================
if not defined temporal_vector2_gauss (goto skip_temporal_vector2_gauss)
if not exist "out/vector2/temporal/gauss/" mkdir "out/vector2/temporal/gauss/"
FastNoise.exe vector2 Uniform Box 3 gauss 1.0 product %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_box3x3_Gauss10_product -split %seedcmd%
FastNoise.exe vector2 Uniform Box 5 gauss 1.0 product %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_box5x5_Gauss10_product -split %seedcmd%
FastNoise.exe vector2 Uniform Gauss 1.0 gauss 1.0 product %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_gauss1_0_Gauss10_product -split %seedcmd%
FastNoise.exe vector2 Uniform Binomial 2 gauss 1.0 product %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_binomial3x3_Gauss10_product -split %seedcmd%
FastNoise.exe vector2 Uniform Binomial 4 gauss 1.0 product %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_binomial5x5_Gauss10_product -split %seedcmd%
FastNoise.exe vector2 Uniform Box 3 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_box3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe vector2 Uniform Box 5 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_box5x5_Gauss10_separate05 -split %seedcmd%
FastNoise.exe vector2 Uniform Gauss 1.0 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_gauss1_0_Gauss10_separate05 -split %seedcmd%
FastNoise.exe vector2 Uniform Binomial 2 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_binomial3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe vector2 Uniform Binomial 4 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector2/temporal/gauss/vector2_uniform_binomial5x5_Gauss10_separate05 -split %seedcmd%
:skip_temporal_vector2_gauss
rem ============================ TEMPORAL VECTOR3 EXP ============================
if not defined temporal_vector3_exp (goto skip_temporal_vector3_exp)
if not exist "out/vector3/temporal/exp/" mkdir "out/vector3/temporal/exp/"
FastNoise.exe vector3 Uniform Box 3 exponential 0.1 0.1 product %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_box3x3_exp0101_product -split %seedcmd%
FastNoise.exe vector3 Uniform Box 5 exponential 0.1 0.1 product %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_box5x5_exp0101_product -split %seedcmd%
FastNoise.exe vector3 Uniform Gauss 1.0 exponential 0.1 0.1 product %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_gauss1_0_exp0101_product -split %seedcmd%
FastNoise.exe vector3 Uniform Binomial 2 exponential 0.1 0.1 product %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_binomial3x3_exp0101_product -split %seedcmd%
FastNoise.exe vector3 Uniform Binomial 4 exponential 0.1 0.1 product %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_binomial5x5_exp0101_product -split %seedcmd%
FastNoise.exe vector3 Uniform Box 3 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_box3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe vector3 Uniform Box 5 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_box5x5_exp0101_separate05 -split %seedcmd%
FastNoise.exe vector3 Uniform Gauss 1.0 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_gauss1_0_exp0101_separate05 -split %seedcmd%
FastNoise.exe vector3 Uniform Binomial 2 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_binomial3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe vector3 Uniform Binomial 4 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/vector3/temporal/exp/vector3_uniform_binomial5x5_exp0101_separate05 -split %seedcmd%
:skip_temporal_vector3_exp
rem ============================ TEMPORAL VECTOR3 GAUSS ============================
if not defined temporal_vector3_gauss (goto skip_temporal_vector3_gauss)
if not exist "out/vector3/temporal/gauss/" mkdir "out/vector3/temporal/gauss/"
FastNoise.exe vector3 Uniform Box 3 gauss 1.0 product %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_box3x3_Gauss10_product -split %seedcmd%
FastNoise.exe vector3 Uniform Box 5 gauss 1.0 product %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_box5x5_Gauss10_product -split %seedcmd%
FastNoise.exe vector3 Uniform Gauss 1.0 gauss 1.0 product %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_gauss1_0_Gauss10_product -split %seedcmd%
FastNoise.exe vector3 Uniform Binomial 2 gauss 1.0 product %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_binomial3x3_Gauss10_product -split %seedcmd%
FastNoise.exe vector3 Uniform Binomial 4 gauss 1.0 product %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_binomial5x5_Gauss10_product -split %seedcmd%
FastNoise.exe vector3 Uniform Box 3 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_box3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe vector3 Uniform Box 5 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_box5x5_Gauss10_separate05 -split %seedcmd%
FastNoise.exe vector3 Uniform Gauss 1.0 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_gauss1_0_Gauss10_separate05 -split %seedcmd%
FastNoise.exe vector3 Uniform Binomial 2 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_binomial3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe vector3 Uniform Binomial 4 gauss 1.0 separate 0.5 %width% %height% %depth% out/vector3/temporal/gauss/vector3_uniform_binomial5x5_Gauss10_separate05 -split %seedcmd%
:skip_temporal_vector3_gauss
rem ============================ TEMPORAL SPHERE EXP ============================
if not defined temporal_sphere_exp (goto skip_temporal_sphere_exp)
if not exist "out/sphere/exp" mkdir "out/sphere/exp"
FastNoise.exe sphere Uniform Box 3 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_uniform_box3x3_exp0101_product -split %seedcmd%
FastNoise.exe sphere Uniform Box 5 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_uniform_box5x5_exp0101_product -split %seedcmd%
FastNoise.exe sphere Uniform Gauss 1.0 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_uniform_gauss1_0_exp0101_product -split %seedcmd%
FastNoise.exe sphere Uniform Binomial 2 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_uniform_binomial3x3_exp0101_product -split %seedcmd%
FastNoise.exe sphere Uniform Binomial 4 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_uniform_binomial5x5_exp0101_product -split %seedcmd%
FastNoise.exe sphere Uniform Box 3 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_uniform_box3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe sphere Uniform Box 5 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_uniform_box5x5_exp0101_separate05 -split %seedcmd%
FastNoise.exe sphere Uniform Gauss 1.0 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_uniform_gauss1_0_exp0101_separate05 -split %seedcmd%
FastNoise.exe sphere Uniform Binomial 2 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_uniform_binomial3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe sphere Uniform Binomial 4 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_uniform_binomial5x5_exp0101_separate05 -split %seedcmd%
:skip_temporal_sphere_exp
rem ============================ TEMPORAL COSINE HEMISPHERE EXP ============================
if not defined temporal_coshemi_exp (goto skip_temporal_coshemi_exp)
if not exist "out/sphere/exp" mkdir "out/sphere/exp"
FastNoise.exe sphere Cosine Box 3 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_coshemi_box3x3_exp0101_product -split %seedcmd%
FastNoise.exe sphere Cosine Box 5 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_coshemi_box5x5_exp0101_product -split %seedcmd%
FastNoise.exe sphere Cosine Gauss 1.0 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_coshemi_gauss1_0_exp0101_product -split %seedcmd%
FastNoise.exe sphere Cosine Binomial 2 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_coshemi_binomial3x3_exp0101_product -split %seedcmd%
FastNoise.exe sphere Cosine Binomial 4 exponential 0.1 0.1 product %width% %height% %depth% out/sphere/exp/sphere_coshemi_binomial5x5_exp0101_product -split %seedcmd%
FastNoise.exe sphere Cosine Box 3 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_coshemi_box3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe sphere Cosine Box 5 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_coshemi_box5x5_exp0101_separate05 -split %seedcmd%
FastNoise.exe sphere Cosine Gauss 1.0 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_coshemi_gauss1_0_exp0101_separate05 -split %seedcmd%
FastNoise.exe sphere Cosine Binomial 2 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_coshemi_binomial3x3_exp0101_separate05 -split %seedcmd%
FastNoise.exe sphere Cosine Binomial 4 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_coshemi_binomial5x5_exp0101_separate05 -split %seedcmd%
:skip_temporal_coshemi_exp
rem ============================ TEMPORAL SPHERE GAUSS ============================
if not defined temporal_sphere_gauss (goto skip_temporal_sphere_gauss)
if not exist "out/sphere/gauss" mkdir "out/sphere/gauss"
FastNoise.exe sphere Uniform Box 3 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_uniform_box3x3_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Uniform Box 5 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_uniform_box5x5_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Uniform Gauss 1.0 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_uniform_gauss1_0_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Uniform Binomial 2 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_uniform_binomial3x3_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Uniform Binomial 4 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_uniform_binomial5x5_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Uniform Box 3 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_uniform_box3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe sphere Uniform Box 5 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_uniform_box5x5_Gauss10_separate05 -split %seedcmd%
FastNoise.exe sphere Uniform Gauss 1.0 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_uniform_gauss1_0_Gauss10_separate05 -split %seedcmd%
FastNoise.exe sphere Uniform Binomial 2 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_uniform_binomial3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe sphere Uniform Binomial 4 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_uniform_binomial5x5_Gauss10_separate05 -split %seedcmd%
:skip_temporal_sphere_gauss
rem ============================ TEMPORAL COSINE HEMISPHERE GAUSS ============================
if not defined temporal_coshemi_gauss (goto skip_temporal_coshemi_gauss)
if not exist "out/sphere/gauss" mkdir "out/sphere/gauss"
FastNoise.exe sphere Cosine Box 3 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_coshemi_box3x3_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Cosine Box 5 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_coshemi_box5x5_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Cosine Gauss 1.0 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_coshemi_gauss1_0_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Cosine Binomial 2 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_coshemi_binomial3x3_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Cosine Binomial 4 gauss 1.0 product %width% %height% %depth% out/sphere/gauss/sphere_coshemi_binomial5x5_Gauss10_product -split %seedcmd%
FastNoise.exe sphere Cosine Box 3 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_coshemi_box3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe sphere Cosine Box 5 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_coshemi_box5x5_Gauss10_separate05 -split %seedcmd%
FastNoise.exe sphere Cosine Gauss 1.0 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_coshemi_gauss1_0_Gauss10_separate05 -split %seedcmd%
FastNoise.exe sphere Cosine Binomial 2 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_coshemi_binomial3x3_Gauss10_separate05 -split %seedcmd%
FastNoise.exe sphere Cosine Binomial 4 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_coshemi_binomial5x5_Gauss10_separate05 -split %seedcmd%
:skip_temporal_coshemi_gauss
rem ============================ TEMPORAL ONLY COSINE HEMISPHERE ============================
if not defined temporalonly_coshemi (goto skip_temporalonly_coshemi)
if not exist "out/sphere/gauss" mkdir "out/sphere/gauss"
if not exist "out/sphere/exp" mkdir "out/sphere/exp"
FastNoise.exe sphere Cosine Box 1 gauss 1.0 separate 0.5 %width% %height% %depth% out/sphere/gauss/sphere_coshemi_box1x1_Gauss10_separate05 -split %seedcmd%
FastNoise.exe sphere Cosine Box 1 exponential 0.1 0.1 separate 0.5 %width% %height% %depth% out/sphere/exp/sphere_coshemi_box1x1_exp0101_separate05 -split %seedcmd%
: skip_temporalonly_coshemi