@thi.ng/shader-ast-stdlib 0.13.15 → 0.13.16

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-05-11T12:16:33Z
3
+ - **Last updated**: 2023-05-24T14:26:03Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/noise/simplex3.js CHANGED
@@ -73,7 +73,7 @@ export const snoise3 = defn(F, "snoise3", [V3], (v) => {
73
73
  ret(mul(42, dot(mul(m, m), vec4(dot(p0, x0), dot(p1, x1), dot(p2, x2), dot(p3, x3))))),
74
74
  ];
75
75
  });
76
- export const snoiseVec32 = defn(V2, "snoiseVec3", [V3], (p) => {
76
+ export const snoiseVec32 = defn(V2, "snoiseVec32", [V3], (p) => {
77
77
  return [
78
78
  ret(vec2(snoise3(p), snoise3(vec3(sub($y(p), 19.1), add($z(p), 33.4), add($x(p), 47.2))))),
79
79
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/shader-ast-stdlib",
3
- "version": "0.13.15",
3
+ "version": "0.13.16",
4
4
  "description": "Function collection for modular GPGPU / shader programming with @thi.ng/shader-ast",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -330,5 +330,5 @@
330
330
  ],
331
331
  "year": 2019
332
332
  },
333
- "gitHead": "20ab11b687a13228f6a8cecdc5f05ba9105122ea\n"
333
+ "gitHead": "26a171dff04a026e5466fc655b91c09e5279db8e\n"
334
334
  }