@thi.ng/shader-ast-stdlib 1.0.41 → 1.0.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +378 -378
  2. package/CHANGELOG.md +0 -134
package/package.json CHANGED
@@ -1,379 +1,379 @@
1
1
  {
2
- "name": "@thi.ng/shader-ast-stdlib",
3
- "version": "1.0.41",
4
- "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast",
5
- "type": "module",
6
- "module": "./index.js",
7
- "typings": "./index.d.ts",
8
- "sideEffects": false,
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/thi-ng/umbrella.git"
12
- },
13
- "homepage": "https://thi.ng/shader-ast-stdlib",
14
- "funding": [
15
- {
16
- "type": "github",
17
- "url": "https://github.com/sponsors/postspectacular"
18
- },
19
- {
20
- "type": "patreon",
21
- "url": "https://patreon.com/thing_umbrella"
22
- },
23
- {
24
- "type": "liberapay",
25
- "url": "https://liberapay.com/thi.ng"
26
- }
27
- ],
28
- "author": "Karsten Schmidt (https://thi.ng)",
29
- "contributors": [
30
- "Yury Hantsouski (https://github.com/Hantsouski)"
31
- ],
32
- "license": "Apache-2.0",
33
- "scripts": {
34
- "build": "yarn build:esbuild && yarn build:decl",
35
- "build:decl": "tsc --declaration --emitDeclarationOnly",
36
- "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
37
- "clean": "bun ../../tools/src/clean-package.ts color fog light math matrix noise raymarch screen sdf tex",
38
- "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
39
- "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
40
- "pub": "yarn npm publish --access public",
41
- "test": "bun test",
42
- "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
43
- },
44
- "dependencies": {
45
- "@thi.ng/api": "^8.12.2",
46
- "@thi.ng/shader-ast": "^1.1.22"
47
- },
48
- "devDependencies": {
49
- "esbuild": "^0.25.9",
50
- "typedoc": "^0.28.12",
51
- "typescript": "^5.9.2"
52
- },
53
- "keywords": [
54
- "ast",
55
- "blend",
56
- "blur",
57
- "canvas",
58
- "codegen",
59
- "dsl",
60
- "easing",
61
- "fog",
62
- "functional",
63
- "glsl",
64
- "gpgpu",
65
- "higher-order",
66
- "inline",
67
- "interval",
68
- "kernel",
69
- "lighting",
70
- "math",
71
- "matrix",
72
- "noise",
73
- "random",
74
- "raymarch",
75
- "rgb",
76
- "sdf",
77
- "shader",
78
- "texture",
79
- "typescript",
80
- "webgl"
81
- ],
82
- "publishConfig": {
83
- "access": "public"
84
- },
85
- "engines": {
86
- "node": ">=18"
87
- },
88
- "files": [
89
- "./*.js",
90
- "./*.d.ts",
91
- "color",
92
- "controlflow",
93
- "fog",
94
- "isec",
95
- "light",
96
- "math",
97
- "matrix",
98
- "noise",
99
- "raymarch",
100
- "screen",
101
- "sdf",
102
- "tex",
103
- "viz"
104
- ],
105
- "exports": {
106
- ".": {
107
- "default": "./index.js"
108
- },
109
- "./api": {
110
- "default": "./api.js"
111
- },
112
- "./color/aces-film": {
113
- "default": "./color/aces-film.js"
114
- },
115
- "./color/cosine-gradient": {
116
- "default": "./color/cosine-gradient.js"
117
- },
118
- "./color/levels": {
119
- "default": "./color/levels.js"
120
- },
121
- "./color/linear-srgb": {
122
- "default": "./color/linear-srgb.js"
123
- },
124
- "./color/luminance": {
125
- "default": "./color/luminance.js"
126
- },
127
- "./color/porter-duff": {
128
- "default": "./color/porter-duff.js"
129
- },
130
- "./color/rgbe": {
131
- "default": "./color/rgbe.js"
132
- },
133
- "./controlflow/branches": {
134
- "default": "./controlflow/branches.js"
135
- },
136
- "./fog/exp": {
137
- "default": "./fog/exp.js"
138
- },
139
- "./fog/exp2": {
140
- "default": "./fog/exp2.js"
141
- },
142
- "./fog/linear": {
143
- "default": "./fog/linear.js"
144
- },
145
- "./isec/point": {
146
- "default": "./isec/point.js"
147
- },
148
- "./light/lambert": {
149
- "default": "./light/lambert.js"
150
- },
151
- "./light/trilight": {
152
- "default": "./light/trilight.js"
153
- },
154
- "./math/additive": {
155
- "default": "./math/additive.js"
156
- },
157
- "./math/cartesian": {
158
- "default": "./math/cartesian.js"
159
- },
160
- "./math/clamp": {
161
- "default": "./math/clamp.js"
162
- },
163
- "./math/cross2": {
164
- "default": "./math/cross2.js"
165
- },
166
- "./math/dist-chebyshev": {
167
- "default": "./math/dist-chebyshev.js"
168
- },
169
- "./math/dist-manhattan": {
170
- "default": "./math/dist-manhattan.js"
171
- },
172
- "./math/easing": {
173
- "default": "./math/easing.js"
174
- },
175
- "./math/fit": {
176
- "default": "./math/fit.js"
177
- },
178
- "./math/interval": {
179
- "default": "./math/interval.js"
180
- },
181
- "./math/magsq": {
182
- "default": "./math/magsq.js"
183
- },
184
- "./math/maxcomp": {
185
- "default": "./math/maxcomp.js"
186
- },
187
- "./math/mincomp": {
188
- "default": "./math/mincomp.js"
189
- },
190
- "./math/mix-cubic": {
191
- "default": "./math/mix-cubic.js"
192
- },
193
- "./math/mix-quadratic": {
194
- "default": "./math/mix-quadratic.js"
195
- },
196
- "./math/orthogonal": {
197
- "default": "./math/orthogonal.js"
198
- },
199
- "./math/osc": {
200
- "default": "./math/osc.js"
201
- },
202
- "./math/pack-float": {
203
- "default": "./math/pack-float.js"
204
- },
205
- "./math/polar": {
206
- "default": "./math/polar.js"
207
- },
208
- "./math/sincos": {
209
- "default": "./math/sincos.js"
210
- },
211
- "./math/smoother-step": {
212
- "default": "./math/smoother-step.js"
213
- },
214
- "./matrix/convert": {
215
- "default": "./matrix/convert.js"
216
- },
217
- "./matrix/lookat": {
218
- "default": "./matrix/lookat.js"
219
- },
220
- "./matrix/mvp": {
221
- "default": "./matrix/mvp.js"
222
- },
223
- "./matrix/normal": {
224
- "default": "./matrix/normal.js"
225
- },
226
- "./matrix/rotation": {
227
- "default": "./matrix/rotation.js"
228
- },
229
- "./noise/curl3": {
230
- "default": "./noise/curl3.js"
231
- },
232
- "./noise/fbm": {
233
- "default": "./noise/fbm.js"
234
- },
235
- "./noise/hash": {
236
- "default": "./noise/hash.js"
237
- },
238
- "./noise/permute": {
239
- "default": "./noise/permute.js"
240
- },
241
- "./noise/simplex2": {
242
- "default": "./noise/simplex2.js"
243
- },
244
- "./noise/simplex3": {
245
- "default": "./noise/simplex3.js"
246
- },
247
- "./noise/voronoi2": {
248
- "default": "./noise/voronoi2.js"
249
- },
250
- "./noise/worley2": {
251
- "default": "./noise/worley2.js"
252
- },
253
- "./raymarch/ao": {
254
- "default": "./raymarch/ao.js"
255
- },
256
- "./raymarch/direction": {
257
- "default": "./raymarch/direction.js"
258
- },
259
- "./raymarch/normal": {
260
- "default": "./raymarch/normal.js"
261
- },
262
- "./raymarch/point-at": {
263
- "default": "./raymarch/point-at.js"
264
- },
265
- "./raymarch/scene": {
266
- "default": "./raymarch/scene.js"
267
- },
268
- "./screen/uv": {
269
- "default": "./screen/uv.js"
270
- },
271
- "./sdf/annular": {
272
- "default": "./sdf/annular.js"
273
- },
274
- "./sdf/arc": {
275
- "default": "./sdf/arc.js"
276
- },
277
- "./sdf/bezier": {
278
- "default": "./sdf/bezier.js"
279
- },
280
- "./sdf/box-rounded": {
281
- "default": "./sdf/box-rounded.js"
282
- },
283
- "./sdf/box": {
284
- "default": "./sdf/box.js"
285
- },
286
- "./sdf/cross": {
287
- "default": "./sdf/cross.js"
288
- },
289
- "./sdf/cylinder": {
290
- "default": "./sdf/cylinder.js"
291
- },
292
- "./sdf/hex": {
293
- "default": "./sdf/hex.js"
294
- },
295
- "./sdf/isec": {
296
- "default": "./sdf/isec.js"
297
- },
298
- "./sdf/line": {
299
- "default": "./sdf/line.js"
300
- },
301
- "./sdf/mirror": {
302
- "default": "./sdf/mirror.js"
303
- },
304
- "./sdf/plane": {
305
- "default": "./sdf/plane.js"
306
- },
307
- "./sdf/polygon": {
308
- "default": "./sdf/polygon.js"
309
- },
310
- "./sdf/polyhedra": {
311
- "default": "./sdf/polyhedra.js"
312
- },
313
- "./sdf/polyline": {
314
- "default": "./sdf/polyline.js"
315
- },
316
- "./sdf/repeat-polar": {
317
- "default": "./sdf/repeat-polar.js"
318
- },
319
- "./sdf/repeat": {
320
- "default": "./sdf/repeat.js"
321
- },
322
- "./sdf/round": {
323
- "default": "./sdf/round.js"
324
- },
325
- "./sdf/smooth-isec": {
326
- "default": "./sdf/smooth-isec.js"
327
- },
328
- "./sdf/smooth-sub": {
329
- "default": "./sdf/smooth-sub.js"
330
- },
331
- "./sdf/smooth-union": {
332
- "default": "./sdf/smooth-union.js"
333
- },
334
- "./sdf/sphere": {
335
- "default": "./sdf/sphere.js"
336
- },
337
- "./sdf/sub": {
338
- "default": "./sdf/sub.js"
339
- },
340
- "./sdf/torus": {
341
- "default": "./sdf/torus.js"
342
- },
343
- "./sdf/tri": {
344
- "default": "./sdf/tri.js"
345
- },
346
- "./sdf/union": {
347
- "default": "./sdf/union.js"
348
- },
349
- "./tex/blur": {
350
- "default": "./tex/blur.js"
351
- },
352
- "./tex/index-coord": {
353
- "default": "./tex/index-coord.js"
354
- },
355
- "./tex/index-uv": {
356
- "default": "./tex/index-uv.js"
357
- },
358
- "./tex/normal": {
359
- "default": "./tex/normal.js"
360
- },
361
- "./tex/read-index": {
362
- "default": "./tex/read-index.js"
363
- },
364
- "./viz/function": {
365
- "default": "./viz/function.js"
366
- }
367
- },
368
- "thi.ng": {
369
- "alias": "std",
370
- "parent": "@thi.ng/shader-ast",
371
- "related": [
372
- "shader-ast-glsl",
373
- "shader-ast-js",
374
- "webgl"
375
- ],
376
- "year": 2019
377
- },
378
- "gitHead": "3c3531350eec56011982583c694aeb1a2e0d0ff4\n"
379
- }
2
+ "name": "@thi.ng/shader-ast-stdlib",
3
+ "version": "1.0.46",
4
+ "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast",
5
+ "type": "module",
6
+ "module": "./index.js",
7
+ "typings": "./index.d.ts",
8
+ "sideEffects": false,
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/thi-ng/umbrella.git"
12
+ },
13
+ "homepage": "https://thi.ng/shader-ast-stdlib",
14
+ "funding": [
15
+ {
16
+ "type": "github",
17
+ "url": "https://github.com/sponsors/postspectacular"
18
+ },
19
+ {
20
+ "type": "patreon",
21
+ "url": "https://patreon.com/thing_umbrella"
22
+ },
23
+ {
24
+ "type": "liberapay",
25
+ "url": "https://liberapay.com/thi.ng"
26
+ }
27
+ ],
28
+ "author": "Karsten Schmidt (https://thi.ng)",
29
+ "contributors": [
30
+ "Yury Hantsouski (https://github.com/Hantsouski)"
31
+ ],
32
+ "license": "Apache-2.0",
33
+ "scripts": {
34
+ "build": "yarn build:esbuild && yarn build:decl",
35
+ "build:decl": "tsc --declaration --emitDeclarationOnly",
36
+ "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
37
+ "clean": "bun ../../tools/src/clean-package.ts color fog light math matrix noise raymarch screen sdf tex",
38
+ "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts",
39
+ "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
40
+ "pub": "npm publish --access public",
41
+ "test": "bun test",
42
+ "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
43
+ },
44
+ "dependencies": {
45
+ "@thi.ng/api": "^8.12.6",
46
+ "@thi.ng/shader-ast": "^1.1.27"
47
+ },
48
+ "devDependencies": {
49
+ "esbuild": "^0.25.11",
50
+ "typedoc": "^0.28.14",
51
+ "typescript": "^5.9.3"
52
+ },
53
+ "keywords": [
54
+ "ast",
55
+ "blend",
56
+ "blur",
57
+ "canvas",
58
+ "codegen",
59
+ "dsl",
60
+ "easing",
61
+ "fog",
62
+ "functional",
63
+ "glsl",
64
+ "gpgpu",
65
+ "higher-order",
66
+ "inline",
67
+ "interval",
68
+ "kernel",
69
+ "lighting",
70
+ "math",
71
+ "matrix",
72
+ "noise",
73
+ "random",
74
+ "raymarch",
75
+ "rgb",
76
+ "sdf",
77
+ "shader",
78
+ "texture",
79
+ "typescript",
80
+ "webgl"
81
+ ],
82
+ "publishConfig": {
83
+ "access": "public"
84
+ },
85
+ "engines": {
86
+ "node": ">=18"
87
+ },
88
+ "files": [
89
+ "./*.js",
90
+ "./*.d.ts",
91
+ "color",
92
+ "controlflow",
93
+ "fog",
94
+ "isec",
95
+ "light",
96
+ "math",
97
+ "matrix",
98
+ "noise",
99
+ "raymarch",
100
+ "screen",
101
+ "sdf",
102
+ "tex",
103
+ "viz"
104
+ ],
105
+ "exports": {
106
+ ".": {
107
+ "default": "./index.js"
108
+ },
109
+ "./api": {
110
+ "default": "./api.js"
111
+ },
112
+ "./color/aces-film": {
113
+ "default": "./color/aces-film.js"
114
+ },
115
+ "./color/cosine-gradient": {
116
+ "default": "./color/cosine-gradient.js"
117
+ },
118
+ "./color/levels": {
119
+ "default": "./color/levels.js"
120
+ },
121
+ "./color/linear-srgb": {
122
+ "default": "./color/linear-srgb.js"
123
+ },
124
+ "./color/luminance": {
125
+ "default": "./color/luminance.js"
126
+ },
127
+ "./color/porter-duff": {
128
+ "default": "./color/porter-duff.js"
129
+ },
130
+ "./color/rgbe": {
131
+ "default": "./color/rgbe.js"
132
+ },
133
+ "./controlflow/branches": {
134
+ "default": "./controlflow/branches.js"
135
+ },
136
+ "./fog/exp": {
137
+ "default": "./fog/exp.js"
138
+ },
139
+ "./fog/exp2": {
140
+ "default": "./fog/exp2.js"
141
+ },
142
+ "./fog/linear": {
143
+ "default": "./fog/linear.js"
144
+ },
145
+ "./isec/point": {
146
+ "default": "./isec/point.js"
147
+ },
148
+ "./light/lambert": {
149
+ "default": "./light/lambert.js"
150
+ },
151
+ "./light/trilight": {
152
+ "default": "./light/trilight.js"
153
+ },
154
+ "./math/additive": {
155
+ "default": "./math/additive.js"
156
+ },
157
+ "./math/cartesian": {
158
+ "default": "./math/cartesian.js"
159
+ },
160
+ "./math/clamp": {
161
+ "default": "./math/clamp.js"
162
+ },
163
+ "./math/cross2": {
164
+ "default": "./math/cross2.js"
165
+ },
166
+ "./math/dist-chebyshev": {
167
+ "default": "./math/dist-chebyshev.js"
168
+ },
169
+ "./math/dist-manhattan": {
170
+ "default": "./math/dist-manhattan.js"
171
+ },
172
+ "./math/easing": {
173
+ "default": "./math/easing.js"
174
+ },
175
+ "./math/fit": {
176
+ "default": "./math/fit.js"
177
+ },
178
+ "./math/interval": {
179
+ "default": "./math/interval.js"
180
+ },
181
+ "./math/magsq": {
182
+ "default": "./math/magsq.js"
183
+ },
184
+ "./math/maxcomp": {
185
+ "default": "./math/maxcomp.js"
186
+ },
187
+ "./math/mincomp": {
188
+ "default": "./math/mincomp.js"
189
+ },
190
+ "./math/mix-cubic": {
191
+ "default": "./math/mix-cubic.js"
192
+ },
193
+ "./math/mix-quadratic": {
194
+ "default": "./math/mix-quadratic.js"
195
+ },
196
+ "./math/orthogonal": {
197
+ "default": "./math/orthogonal.js"
198
+ },
199
+ "./math/osc": {
200
+ "default": "./math/osc.js"
201
+ },
202
+ "./math/pack-float": {
203
+ "default": "./math/pack-float.js"
204
+ },
205
+ "./math/polar": {
206
+ "default": "./math/polar.js"
207
+ },
208
+ "./math/sincos": {
209
+ "default": "./math/sincos.js"
210
+ },
211
+ "./math/smoother-step": {
212
+ "default": "./math/smoother-step.js"
213
+ },
214
+ "./matrix/convert": {
215
+ "default": "./matrix/convert.js"
216
+ },
217
+ "./matrix/lookat": {
218
+ "default": "./matrix/lookat.js"
219
+ },
220
+ "./matrix/mvp": {
221
+ "default": "./matrix/mvp.js"
222
+ },
223
+ "./matrix/normal": {
224
+ "default": "./matrix/normal.js"
225
+ },
226
+ "./matrix/rotation": {
227
+ "default": "./matrix/rotation.js"
228
+ },
229
+ "./noise/curl3": {
230
+ "default": "./noise/curl3.js"
231
+ },
232
+ "./noise/fbm": {
233
+ "default": "./noise/fbm.js"
234
+ },
235
+ "./noise/hash": {
236
+ "default": "./noise/hash.js"
237
+ },
238
+ "./noise/permute": {
239
+ "default": "./noise/permute.js"
240
+ },
241
+ "./noise/simplex2": {
242
+ "default": "./noise/simplex2.js"
243
+ },
244
+ "./noise/simplex3": {
245
+ "default": "./noise/simplex3.js"
246
+ },
247
+ "./noise/voronoi2": {
248
+ "default": "./noise/voronoi2.js"
249
+ },
250
+ "./noise/worley2": {
251
+ "default": "./noise/worley2.js"
252
+ },
253
+ "./raymarch/ao": {
254
+ "default": "./raymarch/ao.js"
255
+ },
256
+ "./raymarch/direction": {
257
+ "default": "./raymarch/direction.js"
258
+ },
259
+ "./raymarch/normal": {
260
+ "default": "./raymarch/normal.js"
261
+ },
262
+ "./raymarch/point-at": {
263
+ "default": "./raymarch/point-at.js"
264
+ },
265
+ "./raymarch/scene": {
266
+ "default": "./raymarch/scene.js"
267
+ },
268
+ "./screen/uv": {
269
+ "default": "./screen/uv.js"
270
+ },
271
+ "./sdf/annular": {
272
+ "default": "./sdf/annular.js"
273
+ },
274
+ "./sdf/arc": {
275
+ "default": "./sdf/arc.js"
276
+ },
277
+ "./sdf/bezier": {
278
+ "default": "./sdf/bezier.js"
279
+ },
280
+ "./sdf/box-rounded": {
281
+ "default": "./sdf/box-rounded.js"
282
+ },
283
+ "./sdf/box": {
284
+ "default": "./sdf/box.js"
285
+ },
286
+ "./sdf/cross": {
287
+ "default": "./sdf/cross.js"
288
+ },
289
+ "./sdf/cylinder": {
290
+ "default": "./sdf/cylinder.js"
291
+ },
292
+ "./sdf/hex": {
293
+ "default": "./sdf/hex.js"
294
+ },
295
+ "./sdf/isec": {
296
+ "default": "./sdf/isec.js"
297
+ },
298
+ "./sdf/line": {
299
+ "default": "./sdf/line.js"
300
+ },
301
+ "./sdf/mirror": {
302
+ "default": "./sdf/mirror.js"
303
+ },
304
+ "./sdf/plane": {
305
+ "default": "./sdf/plane.js"
306
+ },
307
+ "./sdf/polygon": {
308
+ "default": "./sdf/polygon.js"
309
+ },
310
+ "./sdf/polyhedra": {
311
+ "default": "./sdf/polyhedra.js"
312
+ },
313
+ "./sdf/polyline": {
314
+ "default": "./sdf/polyline.js"
315
+ },
316
+ "./sdf/repeat-polar": {
317
+ "default": "./sdf/repeat-polar.js"
318
+ },
319
+ "./sdf/repeat": {
320
+ "default": "./sdf/repeat.js"
321
+ },
322
+ "./sdf/round": {
323
+ "default": "./sdf/round.js"
324
+ },
325
+ "./sdf/smooth-isec": {
326
+ "default": "./sdf/smooth-isec.js"
327
+ },
328
+ "./sdf/smooth-sub": {
329
+ "default": "./sdf/smooth-sub.js"
330
+ },
331
+ "./sdf/smooth-union": {
332
+ "default": "./sdf/smooth-union.js"
333
+ },
334
+ "./sdf/sphere": {
335
+ "default": "./sdf/sphere.js"
336
+ },
337
+ "./sdf/sub": {
338
+ "default": "./sdf/sub.js"
339
+ },
340
+ "./sdf/torus": {
341
+ "default": "./sdf/torus.js"
342
+ },
343
+ "./sdf/tri": {
344
+ "default": "./sdf/tri.js"
345
+ },
346
+ "./sdf/union": {
347
+ "default": "./sdf/union.js"
348
+ },
349
+ "./tex/blur": {
350
+ "default": "./tex/blur.js"
351
+ },
352
+ "./tex/index-coord": {
353
+ "default": "./tex/index-coord.js"
354
+ },
355
+ "./tex/index-uv": {
356
+ "default": "./tex/index-uv.js"
357
+ },
358
+ "./tex/normal": {
359
+ "default": "./tex/normal.js"
360
+ },
361
+ "./tex/read-index": {
362
+ "default": "./tex/read-index.js"
363
+ },
364
+ "./viz/function": {
365
+ "default": "./viz/function.js"
366
+ }
367
+ },
368
+ "thi.ng": {
369
+ "alias": "std",
370
+ "parent": "@thi.ng/shader-ast",
371
+ "related": [
372
+ "shader-ast-glsl",
373
+ "shader-ast-js",
374
+ "webgl"
375
+ ],
376
+ "year": 2019
377
+ },
378
+ "gitHead": "136a5e5ef0b69e82329db00d806c3c4e8f1aa063\n"
379
+ }
package/CHANGELOG.md DELETED
@@ -1,134 +0,0 @@
1
- # Change Log
2
-
3
- - **Last updated**: 2025-09-01T16:38:35Z
4
- - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
-
6
- All notable changes to this project will be documented in this file.
7
- Only versions published since **2022-01-01** are listed here.
8
- Please consult the Git history for older version information.
9
- See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
10
-
11
- **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
12
- and/or version bumps of transitive dependencies.
13
-
14
- ### [0.18.16](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.18.16) (2024-06-21)
15
-
16
- #### ♻️ Refactoring
17
-
18
- - dedupe polynomial easing fns ([1c0b095](https://github.com/thi-ng/umbrella/commit/1c0b095))
19
- - redefine hash fns via HOF templates ([d143855](https://github.com/thi-ng/umbrella/commit/d143855))
20
- - enforce uniform naming convention of internal functions ([56992b2](https://github.com/thi-ng/umbrella/commit/56992b2))
21
-
22
- ## [0.18.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.18.0) (2024-03-07)
23
-
24
- #### 🚀 Features
25
-
26
- - add packFloat()/unpackFloat() ([23a6d7f](https://github.com/thi-ng/umbrella/commit/23a6d7f))
27
- - add packedNormal2(), refactor normal2() ([6f6dc1d](https://github.com/thi-ng/umbrella/commit/6f6dc1d))
28
- - add branches() n-ary helper fn & docs ([74f32ba](https://github.com/thi-ng/umbrella/commit/74f32ba))
29
-
30
- ## [0.17.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.17.0) (2024-03-06)
31
-
32
- #### 🚀 Features
33
-
34
- - add fbmNoiseVec34() ([40ea58d](https://github.com/thi-ng/umbrella/commit/40ea58d))
35
- - add cosineGradient() ([7a20ae9](https://github.com/thi-ng/umbrella/commit/7a20ae9))
36
- - update cossin(), sincos(), add opt. scale factor arg ([e3e8979](https://github.com/thi-ng/umbrella/commit/e3e8979))
37
- - add normal2() ([f6d6e33](https://github.com/thi-ng/umbrella/commit/f6d6e33))
38
-
39
- #### 🩹 Bug fixes
40
-
41
- - update generics for clamp01(), clamp11() and various fitXX() fns ([41d2882](https://github.com/thi-ng/umbrella/commit/41d2882))
42
-
43
- #### ♻️ Refactoring
44
-
45
- - simplify callsites of addSelf/mulSelf etc. ([efa1f8d](https://github.com/thi-ng/umbrella/commit/efa1f8d))
46
-
47
- ### [0.16.28](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.16.28) (2024-02-22)
48
-
49
- #### ♻️ Refactoring
50
-
51
- - update object destructuring in all pkgs & examples ([f36aeb0](https://github.com/thi-ng/umbrella/commit/f36aeb0))
52
-
53
- ### [0.16.22](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.16.22) (2024-02-06)
54
-
55
- #### ♻️ Refactoring
56
-
57
- - use shader type consts ([039a0bf](https://github.com/thi-ng/umbrella/commit/039a0bf))
58
-
59
- ### [0.16.4](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.16.4) (2023-11-09)
60
-
61
- #### ♻️ Refactoring
62
-
63
- - update all tests (packages A-S) ([e3085e4](https://github.com/thi-ng/umbrella/commit/e3085e4))
64
-
65
- ### [0.16.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.16.1) (2023-10-27)
66
-
67
- #### 🩹 Bug fixes
68
-
69
- - fix pkg exports ([20d5d2d](https://github.com/thi-ng/umbrella/commit/20d5d2d))
70
-
71
- ## [0.16.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.16.0) (2023-10-27)
72
-
73
- #### 🚀 Features
74
-
75
- - add trunc(), modulo(), foldback01() ([d3ab3e6](https://github.com/thi-ng/umbrella/commit/d3ab3e6))
76
-
77
- ## [0.15.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.15.0) (2023-10-25)
78
-
79
- #### 🚀 Features
80
-
81
- - add sdfPolyline2() ([4b6c6b7](https://github.com/thi-ng/umbrella/commit/4b6c6b7))
82
- - add fitNorm() ([d5f21c5](https://github.com/thi-ng/umbrella/commit/d5f21c5))
83
- - add isPointInCircle(), isPointInRect() ([de4b1ab](https://github.com/thi-ng/umbrella/commit/de4b1ab))
84
- - add functionSampler() HOF plotting ([c6140b4](https://github.com/thi-ng/umbrella/commit/c6140b4))
85
-
86
- #### ⏱ Performance improvements
87
-
88
- - optimize aspectCorrectedUV2() ([733331a](https://github.com/thi-ng/umbrella/commit/733331a))
89
-
90
- ### [0.14.20](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.14.20) (2023-10-24)
91
-
92
- #### ♻️ Refactoring
93
-
94
- - use hoc function to define easing functions ([2b2c451](https://github.com/thi-ng/umbrella/commit/2b2c451))
95
-
96
- ## [0.14.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.14.0) (2023-07-14)
97
-
98
- #### 🚀 Features
99
-
100
- - add smootherStep() ([859fa5d](https://github.com/thi-ng/umbrella/commit/859fa5d))
101
-
102
- ### [0.13.15](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.13.15) (2023-05-11)
103
-
104
- #### ♻️ Refactoring
105
-
106
- - re-use interned type constants ([f6fcbc5](https://github.com/thi-ng/umbrella/commit/f6fcbc5))
107
-
108
- ### [0.13.14](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.13.14) (2023-05-05)
109
-
110
- #### 🩹 Bug fixes
111
-
112
- - fix [#399](https://github.com/thi-ng/umbrella/issues/399) update HOF function naming ([f4b62d7](https://github.com/thi-ng/umbrella/commit/f4b62d7))
113
- - ensure generated HOFs are using unique names to allow multiple instances
114
-
115
- ## [0.13.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.13.0) (2023-01-10)
116
-
117
- #### 🚀 Features
118
-
119
- - add pre/postmultiplyAlpha() fns ([367ebbd](https://github.com/thi-ng/umbrella/commit/367ebbd))
120
-
121
- #### 🩹 Bug fixes
122
-
123
- - fix porterDuff() ops ([f5bbcc8](https://github.com/thi-ng/umbrella/commit/f5bbcc8))
124
-
125
- ## [0.12.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/shader-ast-stdlib@0.12.0) (2022-05-07)
126
-
127
- #### 🚀 Features
128
-
129
- - add 2D SDF arc/bezier fns ([07bd445](https://github.com/thi-ng/umbrella/commit/07bd445))
130
- - add more 2D SDF prims ([2672e75](https://github.com/thi-ng/umbrella/commit/2672e75))
131
-
132
- #### ♻️ Refactoring
133
-
134
- - update cross2() as non-inline fn ([59d631a](https://github.com/thi-ng/umbrella/commit/59d631a))