q5 2.2.4 → 2.4.2
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/README.md +3 -0
- package/package.json +1 -1
- package/q5.js +565 -422
- package/q5.min.js +2 -2
- package/src/q5-2d-canvas.js +9 -14
- package/src/q5-2d-drawing.js +3 -45
- package/src/q5-2d-image.js +8 -4
- package/src/q5-2d-text.js +4 -14
- package/src/q5-canvas.js +63 -2
- package/src/q5-core.js +3 -2
- package/src/q5-display.js +6 -0
- package/src/q5-math.js +27 -20
- package/src/q5-webgpu-canvas.js +132 -101
- package/src/q5-webgpu-drawing.js +120 -88
- package/src/q5-webgpu-image.js +157 -145
- package/src/q5-webgpu-text.js +38 -1
- package/src/readme.md +37 -6
package/README.md
CHANGED
|
@@ -404,6 +404,9 @@ p5.js is licensed under the LGPLv2, the two small sections of p5' code directly
|
|
|
404
404
|
|
|
405
405
|
## Credits
|
|
406
406
|
|
|
407
|
+
q5-webgpu blendMode:
|
|
408
|
+
https://webgpufundamentals.org/webgpu/lessons/webgpu-transparency.html
|
|
409
|
+
|
|
407
410
|
catmullRomSpline:
|
|
408
411
|
https://en.wikipedia.org/wiki/Centripetal_Catmull%E2%80%93Rom_spline
|
|
409
412
|
|