p5 2.0.0 → 2.0.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/{src → dist}/accessibility/color_namer.js +48 -3
- package/{src → dist}/accessibility/describe.js +12 -2
- package/{src → dist}/accessibility/gridOutput.js +2 -2
- package/dist/accessibility/index.js +60 -0
- package/{src → dist}/accessibility/outputs.js +23 -2
- package/{src → dist}/accessibility/textOutput.js +2 -2
- package/dist/app.js +120 -0
- package/{src → dist}/color/color_conversion.js +48 -10
- package/{src → dist}/color/color_spaces/hsb.js +3 -1
- package/dist/color/creating_reading.js +3 -0
- package/dist/color/index.js +13 -0
- package/dist/color/p5.Color.culori.js +1 -0
- package/dist/color/p5.Color.js +3 -0
- package/{src → dist}/color/setting.js +9 -6
- package/{src/core/constants.js → dist/constants-tYr0tCl8.js} +284 -132
- package/{src → dist}/core/States.js +3 -1
- package/dist/core/constants.js +1 -0
- package/{src → dist}/core/environment.js +12 -10
- package/{src → dist}/core/friendly_errors/browser_errors.js +1 -1
- package/{src → dist}/core/friendly_errors/fes_core.js +14 -44
- package/{src → dist}/core/friendly_errors/file_errors.js +6 -3
- package/dist/core/friendly_errors/index.js +23 -0
- package/dist/core/friendly_errors/param_validator.js +5421 -0
- package/{src → dist}/core/friendly_errors/sketch_reader.js +50 -4
- package/{src → dist}/core/friendly_errors/sketch_verifier.js +6 -6
- package/{src → dist}/core/friendly_errors/stacktrace.js +3 -5
- package/{src → dist}/core/friendly_errors/validate_params.js +50 -41
- package/{src → dist}/core/helpers.js +9 -6
- package/dist/core/init.js +105 -0
- package/dist/core/internationalization.js +302 -0
- package/dist/core/legacy.js +73 -0
- package/dist/core/main.js +44 -0
- package/dist/core/noop.js +3 -0
- package/dist/core/p5.Graphics.js +40 -0
- package/dist/core/p5.Renderer.js +11 -0
- package/dist/core/p5.Renderer2D.js +44 -0
- package/dist/core/reference.js +1 -0
- package/dist/core/rendering.js +40 -0
- package/{src → dist}/core/structure.js +3 -3
- package/{src → dist}/core/transform.js +2 -2
- package/{src/color/creating_reading.js → dist/creating_reading-Cr8L2Jnm.js} +841 -13
- package/{src → dist}/data/index.js +3 -1
- package/{src → dist}/data/local_storage.js +2 -8
- package/{src → dist}/dom/dom.js +19 -13
- package/dist/dom/index.js +18 -0
- package/{src → dist}/dom/p5.Element.js +14 -12
- package/{src → dist}/dom/p5.File.js +4 -4
- package/{src → dist}/dom/p5.MediaElement.js +10 -4
- package/{src → dist}/events/acceleration.js +26 -26
- package/{src → dist}/events/index.js +3 -1
- package/{src → dist}/events/keyboard.js +14 -12
- package/{src → dist}/events/pointer.js +16 -17
- package/dist/image/const.js +9 -0
- package/{src → dist}/image/filterRenderer2D.js +57 -37
- package/{src → dist}/image/filters.js +1 -3
- package/dist/image/image.js +40 -0
- package/dist/image/index.js +51 -0
- package/dist/image/loading_displaying.js +40 -0
- package/dist/image/p5.Image.js +11 -0
- package/{src → dist}/image/pixels.js +5 -3
- package/{src → dist}/io/csv.js +72 -70
- package/dist/io/files.js +40 -0
- package/dist/io/index.js +51 -0
- package/{src → dist}/io/p5.Table.js +6 -6
- package/{src → dist}/io/p5.TableRow.js +5 -6
- package/{src → dist}/io/p5.XML.js +2 -5
- package/{src → dist}/io/utilities.js +1 -1
- package/{src/core/p5.Renderer2D.js → dist/main-CAxvgiOV.js} +738 -57
- package/{src → dist}/math/Matrices/Matrix.js +10 -8
- package/{src → dist}/math/Matrices/MatrixInterface.js +5 -3
- package/{src → dist}/math/Matrices/MatrixNumjs.js +12 -26
- package/{src → dist}/math/calculation.js +2 -2
- package/{src → dist}/math/index.js +6 -3
- package/{src → dist}/math/math.js +3 -3
- package/{src → dist}/math/noise.js +2 -2
- package/{src → dist}/math/p5.Matrix.js +7 -4
- package/{src → dist}/math/p5.Vector.js +6 -6
- package/{src → dist}/math/random.js +2 -2
- package/{src → dist}/math/trigonometry.js +16 -15
- package/{src/image/p5.Image.js → dist/p5.Renderer-Swjl9HQO.js} +393 -22
- package/dist/rendering-B5TRR7aY.js +24960 -0
- package/{src → dist}/shape/2d_primitives.js +18 -17
- package/{src → dist}/shape/attributes.js +18 -17
- package/{src → dist}/shape/curves.js +2 -2
- package/{src → dist}/shape/custom_shapes.js +44 -64
- package/{src → dist}/shape/index.js +10 -2
- package/{src → dist}/shape/vertex.js +2 -3
- package/dist/type/index.js +25 -0
- package/{src → dist}/type/lib/Typr.js +76 -94
- package/{src → dist}/type/p5.Font.js +37 -63
- package/{src → dist}/type/textCore.js +35 -58
- package/{src → dist}/type/unicodeRanges.js +3 -1
- package/{src → dist}/utilities/conversion.js +2 -2
- package/{src → dist}/utilities/index.js +3 -1
- package/{src → dist}/utilities/time_date.js +6 -7
- package/{src → dist}/utilities/utility_functions.js +2 -2
- package/dist/webgl/3d_primitives.js +40 -0
- package/{src → dist}/webgl/GeometryBufferCache.js +3 -1
- package/{src → dist}/webgl/GeometryBuilder.js +12 -8
- package/{src → dist}/webgl/ShaderGenerator.js +79 -82
- package/{src → dist}/webgl/ShapeBuilder.js +26 -23
- package/dist/webgl/index.js +76 -0
- package/{src → dist}/webgl/interaction.js +7 -6
- package/dist/webgl/light.js +40 -0
- package/{src → dist}/webgl/loading.js +45 -12
- package/dist/webgl/material.js +40 -0
- package/dist/webgl/p5.Camera.js +40 -0
- package/{src → dist}/webgl/p5.DataArray.js +3 -5
- package/dist/webgl/p5.Framebuffer.js +40 -0
- package/{src → dist}/webgl/p5.Geometry.js +12 -15
- package/{src → dist}/webgl/p5.Quat.js +5 -4
- package/{src → dist}/webgl/p5.RenderBuffer.js +2 -3
- package/dist/webgl/p5.RendererGL.js +40 -0
- package/dist/webgl/p5.Shader.js +40 -0
- package/dist/webgl/p5.Texture.js +40 -0
- package/{src → dist}/webgl/text.js +78 -38
- package/lib/p5.esm.js +296 -194
- package/lib/p5.js +296 -194
- package/lib/p5.min.js +1 -1
- package/package.json +17 -17
- package/translations/dev.js +6 -6
- package/translations/index.js +1 -1
- package/types/accessibility/color_namer.d.ts +8 -0
- package/types/accessibility/describe.d.ts +184 -0
- package/types/accessibility/gridOutput.d.ts +8 -0
- package/types/accessibility/outputs.d.ts +235 -0
- package/types/accessibility/textOutput.d.ts +8 -0
- package/types/color/color_conversion.d.ts +47 -0
- package/types/color/creating_reading.d.ts +1348 -0
- package/types/color/p5.Color.d.ts +1070 -0
- package/types/color/setting.d.ts +2085 -0
- package/types/core/constants.d.ts +341 -0
- package/types/core/environment.d.ts +668 -0
- package/types/core/friendly_errors/fes_core.d.ts +8 -0
- package/types/core/friendly_errors/file_errors.d.ts +8 -0
- package/types/core/friendly_errors/param_validator.d.ts +30 -0
- package/types/core/friendly_errors/sketch_reader.d.ts +8 -0
- package/types/core/friendly_errors/stacktrace.d.ts +11 -0
- package/types/core/friendly_errors/validate_params.d.ts +8 -0
- package/types/core/helpers.d.ts +8 -0
- package/types/core/legacy.d.ts +8 -0
- package/types/core/main.d.ts +5996 -0
- package/types/core/p5.Graphics.d.ts +484 -0
- package/types/core/p5.Renderer.d.ts +14 -0
- package/types/core/reference.d.ts +8 -0
- package/types/core/rendering.d.ts +481 -0
- package/types/core/structure.d.ts +492 -0
- package/types/core/transform.d.ts +1638 -0
- package/types/data/local_storage.d.ts +323 -0
- package/types/dom/dom.d.ts +1295 -0
- package/types/dom/p5.Element.d.ts +2011 -0
- package/types/dom/p5.File.d.ts +13 -0
- package/types/dom/p5.MediaElement.d.ts +1249 -0
- package/types/events/acceleration.d.ts +193 -0
- package/types/events/keyboard.d.ts +499 -0
- package/types/events/pointer.d.ts +782 -0
- package/types/global.d.ts +5542 -0
- package/types/image/filterRenderer2D.d.ts +54 -0
- package/types/image/image.d.ts +326 -0
- package/types/image/loading_displaying.d.ts +580 -0
- package/types/image/p5.Image.d.ts +5882 -0
- package/types/image/pixels.d.ts +832 -0
- package/types/io/files.d.ts +1447 -0
- package/types/io/p5.Table.d.ts +1247 -0
- package/types/io/p5.TableRow.d.ts +343 -0
- package/types/io/p5.XML.d.ts +1188 -0
- package/types/math/Matrices/Matrix.d.ts +1029 -0
- package/types/math/Matrices/MatrixNumjs.d.ts +8 -0
- package/types/math/calculation.d.ts +923 -0
- package/types/math/math.d.ts +90 -0
- package/types/math/noise.d.ts +311 -0
- package/types/math/p5.Matrix.d.ts +8 -0
- package/types/math/p5.Vector.d.ts +3416 -0
- package/types/math/random.d.ts +267 -0
- package/types/math/trigonometry.d.ts +663 -0
- package/types/p5.d.ts +6663 -0
- package/types/shape/2d_primitives.d.ts +1033 -0
- package/types/shape/attributes.d.ts +466 -0
- package/types/shape/curves.d.ts +740 -0
- package/types/shape/custom_shapes.d.ts +888 -0
- package/types/shape/vertex.d.ts +1141 -0
- package/types/type/p5.Font.d.ts +575 -0
- package/types/type/textCore.d.ts +1198 -0
- package/types/utilities/conversion.d.ts +894 -0
- package/types/utilities/time_date.d.ts +295 -0
- package/types/utilities/utility_functions.d.ts +587 -0
- package/types/webgl/3d_primitives.d.ts +1432 -0
- package/types/webgl/ShaderGenerator.d.ts +8 -0
- package/types/webgl/interaction.d.ts +371 -0
- package/types/webgl/light.d.ts +1184 -0
- package/types/webgl/loading.d.ts +481 -0
- package/types/webgl/material.d.ts +2656 -0
- package/types/webgl/p5.Camera.d.ts +3023 -0
- package/types/webgl/p5.DataArray.d.ts +61 -0
- package/types/webgl/p5.Framebuffer.d.ts +760 -0
- package/types/webgl/p5.Geometry.d.ts +1191 -0
- package/types/webgl/p5.Quat.d.ts +45 -0
- package/types/webgl/p5.RendererGL.d.ts +234 -0
- package/types/webgl/p5.Shader.d.ts +660 -0
- package/types/webgl/p5.Texture.d.ts +61 -0
- package/types/webgl/text.d.ts +74 -0
- package/src/README.md +0 -27
- package/src/accessibility/index.js +0 -13
- package/src/app.js +0 -61
- package/src/color/index.js +0 -9
- package/src/color/p5.Color.culori.js +0 -66
- package/src/color/p5.Color.js +0 -851
- package/src/core/README.md +0 -91
- package/src/core/friendly_errors/index.js +0 -13
- package/src/core/friendly_errors/param_validator.js +0 -561
- package/src/core/init.js +0 -58
- package/src/core/internationalization.js +0 -195
- package/src/core/legacy.js +0 -29
- package/src/core/main.js +0 -689
- package/src/core/noop.js +0 -1
- package/src/core/p5.Graphics.js +0 -696
- package/src/core/p5.Renderer.js +0 -408
- package/src/core/reference.js +0 -2060
- package/src/core/rendering.js +0 -697
- package/src/dom/index.js +0 -11
- package/src/image/const.js +0 -6
- package/src/image/image.js +0 -731
- package/src/image/index.js +0 -15
- package/src/image/loading_displaying.js +0 -1431
- package/src/io/files.js +0 -2210
- package/src/io/index.js +0 -11
- package/src/math/README.md +0 -40
- package/src/type/index.js +0 -9
- package/src/webgl/3d_primitives.js +0 -2741
- package/src/webgl/index.js +0 -37
- package/src/webgl/light.js +0 -1851
- package/src/webgl/material.js +0 -3854
- package/src/webgl/p5.Camera.js +0 -4010
- package/src/webgl/p5.Framebuffer.js +0 -1865
- package/src/webgl/p5.RendererGL.js +0 -2867
- package/src/webgl/p5.Shader.js +0 -1505
- package/src/webgl/p5.Texture.js +0 -541
- package/src/webgl/shaders/basic.frag +0 -6
- package/src/webgl/shaders/filters/base.frag +0 -22
- package/src/webgl/shaders/filters/base.vert +0 -19
- package/src/webgl/shaders/filters/blur.frag +0 -60
- package/src/webgl/shaders/filters/default.vert +0 -18
- package/src/webgl/shaders/filters/dilate.frag +0 -39
- package/src/webgl/shaders/filters/erode.frag +0 -39
- package/src/webgl/shaders/filters/gray.frag +0 -16
- package/src/webgl/shaders/filters/invert.frag +0 -15
- package/src/webgl/shaders/filters/opaque.frag +0 -12
- package/src/webgl/shaders/filters/posterize.frag +0 -29
- package/src/webgl/shaders/filters/threshold.frag +0 -23
- package/src/webgl/shaders/font.frag +0 -216
- package/src/webgl/shaders/font.vert +0 -44
- package/src/webgl/shaders/imageLight.vert +0 -33
- package/src/webgl/shaders/imageLightDiffused.frag +0 -82
- package/src/webgl/shaders/imageLightSpecular.frag +0 -134
- package/src/webgl/shaders/light.vert +0 -37
- package/src/webgl/shaders/light_texture.frag +0 -26
- package/src/webgl/shaders/lighting.glsl +0 -227
- package/src/webgl/shaders/line.frag +0 -74
- package/src/webgl/shaders/line.vert +0 -294
- package/src/webgl/shaders/normal.frag +0 -6
- package/src/webgl/shaders/normal.vert +0 -72
- package/src/webgl/shaders/phong.frag +0 -84
- package/src/webgl/shaders/phong.vert +0 -87
- package/src/webgl/shaders/point.frag +0 -29
- package/src/webgl/shaders/point.vert +0 -19
- package/src/webgl/shaders/sphereMapping.frag +0 -26
- package/src/webgl/shaders/webgl2Compatibility.glsl +0 -34
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
import color_conversion from '../color/color_conversion.js';
|
|
2
|
+
import '../main-CAxvgiOV.js';
|
|
3
|
+
import '../constants-tYr0tCl8.js';
|
|
4
|
+
import '../core/transform.js';
|
|
5
|
+
import '../core/structure.js';
|
|
6
|
+
import '../core/environment.js';
|
|
7
|
+
import '../math/p5.Vector.js';
|
|
8
|
+
import '../rendering-B5TRR7aY.js';
|
|
9
|
+
import '../creating_reading-Cr8L2Jnm.js';
|
|
10
|
+
import 'colorjs.io/fn';
|
|
11
|
+
import '../color/color_spaces/hsb.js';
|
|
12
|
+
import '../dom/p5.Element.js';
|
|
13
|
+
import '../dom/p5.File.js';
|
|
14
|
+
import '../io/p5.XML.js';
|
|
15
|
+
import '../p5.Renderer-Swjl9HQO.js';
|
|
16
|
+
import '../image/filters.js';
|
|
17
|
+
import '../shape/custom_shapes.js';
|
|
18
|
+
import '../core/States.js';
|
|
19
|
+
import '../io/utilities.js';
|
|
20
|
+
import 'file-saver';
|
|
21
|
+
import '../dom/p5.MediaElement.js';
|
|
22
|
+
import '../shape/2d_primitives.js';
|
|
23
|
+
import '../core/helpers.js';
|
|
24
|
+
import '../shape/attributes.js';
|
|
25
|
+
import '../shape/curves.js';
|
|
26
|
+
import '../shape/vertex.js';
|
|
27
|
+
import '../color/setting.js';
|
|
28
|
+
import 'omggif';
|
|
29
|
+
import '../io/csv.js';
|
|
30
|
+
import 'gifenc';
|
|
31
|
+
import '../image/pixels.js';
|
|
32
|
+
import '../webgl/GeometryBuilder.js';
|
|
33
|
+
import '../math/p5.Matrix.js';
|
|
34
|
+
import '../math/Matrices/Matrix.js';
|
|
35
|
+
import '../math/Matrices/MatrixInterface.js';
|
|
36
|
+
import '../webgl/p5.Geometry.js';
|
|
37
|
+
import '../webgl/p5.DataArray.js';
|
|
38
|
+
import '../webgl/p5.Quat.js';
|
|
39
|
+
import '../webgl/p5.RenderBuffer.js';
|
|
40
|
+
import '../webgl/ShapeBuilder.js';
|
|
41
|
+
import 'libtess';
|
|
42
|
+
import '../webgl/GeometryBufferCache.js';
|
|
43
|
+
import '../image/const.js';
|
|
44
|
+
import '../math/trigonometry.js';
|
|
45
|
+
import '../image/filterRenderer2D.js';
|
|
46
|
+
|
|
1
47
|
/**
|
|
2
48
|
* @module Environment
|
|
3
49
|
* @submodule Environment
|
|
@@ -5,7 +51,6 @@
|
|
|
5
51
|
* @requires core
|
|
6
52
|
*/
|
|
7
53
|
|
|
8
|
-
import color_conversion from '../color/color_conversion';
|
|
9
54
|
|
|
10
55
|
function colorNamer(p5, fn){
|
|
11
56
|
//stores the original hsb values
|
|
@@ -713,8 +758,8 @@ function colorNamer(p5, fn){
|
|
|
713
758
|
};
|
|
714
759
|
}
|
|
715
760
|
|
|
716
|
-
export default colorNamer;
|
|
717
|
-
|
|
718
761
|
if(typeof p5 !== 'undefined'){
|
|
719
762
|
colorNamer(p5, p5.prototype);
|
|
720
763
|
}
|
|
764
|
+
|
|
765
|
+
export { colorNamer as default };
|
|
@@ -75,6 +75,11 @@ function describe(p5, fn){
|
|
|
75
75
|
*
|
|
76
76
|
* <div>
|
|
77
77
|
* <code>
|
|
78
|
+
*
|
|
79
|
+
* function setup(){
|
|
80
|
+
* createCanvas(100, 100);
|
|
81
|
+
* };
|
|
82
|
+
*
|
|
78
83
|
* function draw() {
|
|
79
84
|
* background(200);
|
|
80
85
|
*
|
|
@@ -96,6 +101,11 @@ function describe(p5, fn){
|
|
|
96
101
|
*
|
|
97
102
|
* <div>
|
|
98
103
|
* <code>
|
|
104
|
+
*
|
|
105
|
+
* function setup(){
|
|
106
|
+
* createCanvas(100, 100);
|
|
107
|
+
* }
|
|
108
|
+
*
|
|
99
109
|
* function draw() {
|
|
100
110
|
* background(200);
|
|
101
111
|
*
|
|
@@ -498,8 +508,8 @@ function describe(p5, fn){
|
|
|
498
508
|
};
|
|
499
509
|
}
|
|
500
510
|
|
|
501
|
-
export default describe;
|
|
502
|
-
|
|
503
511
|
if(typeof p5 !== 'undefined'){
|
|
504
512
|
describe(p5, p5.prototype);
|
|
505
513
|
}
|
|
514
|
+
|
|
515
|
+
export { describe as default };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import describe from './describe.js';
|
|
2
|
+
import gridOutput from './gridOutput.js';
|
|
3
|
+
import textOutput from './textOutput.js';
|
|
4
|
+
import outputs from './outputs.js';
|
|
5
|
+
import colorNamer from './color_namer.js';
|
|
6
|
+
import '../color/color_conversion.js';
|
|
7
|
+
import '../main-CAxvgiOV.js';
|
|
8
|
+
import '../constants-tYr0tCl8.js';
|
|
9
|
+
import '../core/transform.js';
|
|
10
|
+
import '../core/structure.js';
|
|
11
|
+
import '../core/environment.js';
|
|
12
|
+
import '../math/p5.Vector.js';
|
|
13
|
+
import '../rendering-B5TRR7aY.js';
|
|
14
|
+
import '../creating_reading-Cr8L2Jnm.js';
|
|
15
|
+
import 'colorjs.io/fn';
|
|
16
|
+
import '../color/color_spaces/hsb.js';
|
|
17
|
+
import '../dom/p5.Element.js';
|
|
18
|
+
import '../dom/p5.File.js';
|
|
19
|
+
import '../io/p5.XML.js';
|
|
20
|
+
import '../p5.Renderer-Swjl9HQO.js';
|
|
21
|
+
import '../image/filters.js';
|
|
22
|
+
import '../shape/custom_shapes.js';
|
|
23
|
+
import '../core/States.js';
|
|
24
|
+
import '../io/utilities.js';
|
|
25
|
+
import 'file-saver';
|
|
26
|
+
import '../dom/p5.MediaElement.js';
|
|
27
|
+
import '../shape/2d_primitives.js';
|
|
28
|
+
import '../core/helpers.js';
|
|
29
|
+
import '../shape/attributes.js';
|
|
30
|
+
import '../shape/curves.js';
|
|
31
|
+
import '../shape/vertex.js';
|
|
32
|
+
import '../color/setting.js';
|
|
33
|
+
import 'omggif';
|
|
34
|
+
import '../io/csv.js';
|
|
35
|
+
import 'gifenc';
|
|
36
|
+
import '../image/pixels.js';
|
|
37
|
+
import '../webgl/GeometryBuilder.js';
|
|
38
|
+
import '../math/p5.Matrix.js';
|
|
39
|
+
import '../math/Matrices/Matrix.js';
|
|
40
|
+
import '../math/Matrices/MatrixInterface.js';
|
|
41
|
+
import '../webgl/p5.Geometry.js';
|
|
42
|
+
import '../webgl/p5.DataArray.js';
|
|
43
|
+
import '../webgl/p5.Quat.js';
|
|
44
|
+
import '../webgl/p5.RenderBuffer.js';
|
|
45
|
+
import '../webgl/ShapeBuilder.js';
|
|
46
|
+
import 'libtess';
|
|
47
|
+
import '../webgl/GeometryBufferCache.js';
|
|
48
|
+
import '../image/const.js';
|
|
49
|
+
import '../math/trigonometry.js';
|
|
50
|
+
import '../image/filterRenderer2D.js';
|
|
51
|
+
|
|
52
|
+
function accessibility(p5){
|
|
53
|
+
p5.registerAddon(describe);
|
|
54
|
+
p5.registerAddon(gridOutput);
|
|
55
|
+
p5.registerAddon(textOutput);
|
|
56
|
+
p5.registerAddon(outputs);
|
|
57
|
+
p5.registerAddon(colorNamer);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export { accessibility as default };
|
|
@@ -81,6 +81,11 @@ function outputs(p5, fn){
|
|
|
81
81
|
*
|
|
82
82
|
* <div>
|
|
83
83
|
* <code>
|
|
84
|
+
*
|
|
85
|
+
* function setup(){
|
|
86
|
+
* createCanvas(100, 100);
|
|
87
|
+
* }
|
|
88
|
+
*
|
|
84
89
|
* function draw() {
|
|
85
90
|
* // Add the text description.
|
|
86
91
|
* textOutput();
|
|
@@ -101,6 +106,11 @@ function outputs(p5, fn){
|
|
|
101
106
|
*
|
|
102
107
|
* <div>
|
|
103
108
|
* <code>
|
|
109
|
+
*
|
|
110
|
+
* function setup(){
|
|
111
|
+
* createCanvas(100, 100);
|
|
112
|
+
* }
|
|
113
|
+
*
|
|
104
114
|
* function draw() {
|
|
105
115
|
* // Add the text description and
|
|
106
116
|
* // display it for debugging.
|
|
@@ -215,6 +225,11 @@ function outputs(p5, fn){
|
|
|
215
225
|
*
|
|
216
226
|
* <div>
|
|
217
227
|
* <code>
|
|
228
|
+
*
|
|
229
|
+
* function setup() {
|
|
230
|
+
* createCanvas(100, 100);
|
|
231
|
+
* }
|
|
232
|
+
*
|
|
218
233
|
* function draw() {
|
|
219
234
|
* // Add the grid description.
|
|
220
235
|
* gridOutput();
|
|
@@ -235,6 +250,11 @@ function outputs(p5, fn){
|
|
|
235
250
|
*
|
|
236
251
|
* <div>
|
|
237
252
|
* <code>
|
|
253
|
+
*
|
|
254
|
+
* function setup(){
|
|
255
|
+
* createCanvas(100, 100);
|
|
256
|
+
* }
|
|
257
|
+
*
|
|
238
258
|
* function draw() {
|
|
239
259
|
* // Add the grid description and
|
|
240
260
|
* // display it for debugging.
|
|
@@ -255,6 +275,7 @@ function outputs(p5, fn){
|
|
|
255
275
|
* </div>
|
|
256
276
|
*/
|
|
257
277
|
|
|
278
|
+
|
|
258
279
|
fn.gridOutput = function(display) {
|
|
259
280
|
// p5._validateParameters('gridOutput', arguments);
|
|
260
281
|
//if gridOutput is already true
|
|
@@ -681,8 +702,8 @@ function outputs(p5, fn){
|
|
|
681
702
|
};
|
|
682
703
|
}
|
|
683
704
|
|
|
684
|
-
export default outputs;
|
|
685
|
-
|
|
686
705
|
if(typeof p5 !== 'undefined'){
|
|
687
706
|
outputs(p5, p5.prototype);
|
|
688
707
|
}
|
|
708
|
+
|
|
709
|
+
export { outputs as default };
|
package/dist/app.js
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { p as p5 } from './main-CAxvgiOV.js';
|
|
2
|
+
import shape from './shape/index.js';
|
|
3
|
+
import accessibility from './accessibility/index.js';
|
|
4
|
+
import color from './color/index.js';
|
|
5
|
+
import friendlyErrors from './core/friendly_errors/index.js';
|
|
6
|
+
import data from './data/index.js';
|
|
7
|
+
import dom from './dom/index.js';
|
|
8
|
+
import events from './events/index.js';
|
|
9
|
+
import image from './image/index.js';
|
|
10
|
+
import io from './io/index.js';
|
|
11
|
+
import math from './math/index.js';
|
|
12
|
+
import utilities from './utilities/index.js';
|
|
13
|
+
import webgl from './webgl/index.js';
|
|
14
|
+
import type from './type/index.js';
|
|
15
|
+
import { waitForDocumentReady, waitingForTranslator, _globalInit } from './core/init.js';
|
|
16
|
+
import './constants-tYr0tCl8.js';
|
|
17
|
+
import './core/transform.js';
|
|
18
|
+
import './core/structure.js';
|
|
19
|
+
import './core/environment.js';
|
|
20
|
+
import './math/p5.Vector.js';
|
|
21
|
+
import './rendering-B5TRR7aY.js';
|
|
22
|
+
import './creating_reading-Cr8L2Jnm.js';
|
|
23
|
+
import 'colorjs.io/fn';
|
|
24
|
+
import './color/color_spaces/hsb.js';
|
|
25
|
+
import './dom/p5.Element.js';
|
|
26
|
+
import './dom/p5.File.js';
|
|
27
|
+
import './io/p5.XML.js';
|
|
28
|
+
import './p5.Renderer-Swjl9HQO.js';
|
|
29
|
+
import './image/filters.js';
|
|
30
|
+
import './shape/custom_shapes.js';
|
|
31
|
+
import './core/States.js';
|
|
32
|
+
import './io/utilities.js';
|
|
33
|
+
import 'file-saver';
|
|
34
|
+
import './dom/p5.MediaElement.js';
|
|
35
|
+
import './shape/2d_primitives.js';
|
|
36
|
+
import './core/helpers.js';
|
|
37
|
+
import './shape/attributes.js';
|
|
38
|
+
import './shape/curves.js';
|
|
39
|
+
import './shape/vertex.js';
|
|
40
|
+
import './color/setting.js';
|
|
41
|
+
import 'omggif';
|
|
42
|
+
import './io/csv.js';
|
|
43
|
+
import 'gifenc';
|
|
44
|
+
import './image/pixels.js';
|
|
45
|
+
import './webgl/GeometryBuilder.js';
|
|
46
|
+
import './math/p5.Matrix.js';
|
|
47
|
+
import './math/Matrices/Matrix.js';
|
|
48
|
+
import './math/Matrices/MatrixInterface.js';
|
|
49
|
+
import './webgl/p5.Geometry.js';
|
|
50
|
+
import './webgl/p5.DataArray.js';
|
|
51
|
+
import './webgl/p5.Quat.js';
|
|
52
|
+
import './webgl/p5.RenderBuffer.js';
|
|
53
|
+
import './webgl/ShapeBuilder.js';
|
|
54
|
+
import 'libtess';
|
|
55
|
+
import './webgl/GeometryBufferCache.js';
|
|
56
|
+
import './image/const.js';
|
|
57
|
+
import './math/trigonometry.js';
|
|
58
|
+
import './image/filterRenderer2D.js';
|
|
59
|
+
import './accessibility/describe.js';
|
|
60
|
+
import './accessibility/gridOutput.js';
|
|
61
|
+
import './accessibility/textOutput.js';
|
|
62
|
+
import './accessibility/outputs.js';
|
|
63
|
+
import './accessibility/color_namer.js';
|
|
64
|
+
import './color/color_conversion.js';
|
|
65
|
+
import './core/friendly_errors/fes_core.js';
|
|
66
|
+
import './core/internationalization.js';
|
|
67
|
+
import 'i18next';
|
|
68
|
+
import 'i18next-browser-languagedetector';
|
|
69
|
+
import './core/friendly_errors/browser_errors.js';
|
|
70
|
+
import './core/friendly_errors/stacktrace.js';
|
|
71
|
+
import './core/friendly_errors/param_validator.js';
|
|
72
|
+
import 'zod';
|
|
73
|
+
import './core/friendly_errors/sketch_verifier.js';
|
|
74
|
+
import 'acorn';
|
|
75
|
+
import 'acorn-walk';
|
|
76
|
+
import './core/friendly_errors/file_errors.js';
|
|
77
|
+
import './data/local_storage.js';
|
|
78
|
+
import './dom/dom.js';
|
|
79
|
+
import './events/acceleration.js';
|
|
80
|
+
import './events/keyboard.js';
|
|
81
|
+
import './events/pointer.js';
|
|
82
|
+
import './io/p5.Table.js';
|
|
83
|
+
import './io/p5.TableRow.js';
|
|
84
|
+
import './math/calculation.js';
|
|
85
|
+
import './math/noise.js';
|
|
86
|
+
import './math/random.js';
|
|
87
|
+
import './math/math.js';
|
|
88
|
+
import './utilities/conversion.js';
|
|
89
|
+
import './utilities/utility_functions.js';
|
|
90
|
+
import './utilities/time_date.js';
|
|
91
|
+
import './webgl/interaction.js';
|
|
92
|
+
import './webgl/loading.js';
|
|
93
|
+
import './webgl/text.js';
|
|
94
|
+
import './type/p5.Font.js';
|
|
95
|
+
import './type/textCore.js';
|
|
96
|
+
import '@japont/unicode-range';
|
|
97
|
+
import './type/unicodeRanges.js';
|
|
98
|
+
import './type/lib/Typr.js';
|
|
99
|
+
import 'pako';
|
|
100
|
+
import '@davepagurek/bezier-path';
|
|
101
|
+
import './webgl/ShaderGenerator.js';
|
|
102
|
+
import 'escodegen';
|
|
103
|
+
|
|
104
|
+
// core
|
|
105
|
+
shape(p5);
|
|
106
|
+
accessibility(p5);
|
|
107
|
+
color(p5);
|
|
108
|
+
friendlyErrors(p5);
|
|
109
|
+
data(p5);
|
|
110
|
+
dom(p5);
|
|
111
|
+
events(p5);
|
|
112
|
+
image(p5);
|
|
113
|
+
io(p5);
|
|
114
|
+
math(p5);
|
|
115
|
+
utilities(p5);
|
|
116
|
+
webgl(p5);
|
|
117
|
+
type(p5);
|
|
118
|
+
Promise.all([waitForDocumentReady(), waitingForTranslator]).then(_globalInit);
|
|
119
|
+
|
|
120
|
+
export { p5 as default };
|
|
@@ -1,3 +1,48 @@
|
|
|
1
|
+
import { p as p5 } from '../main-CAxvgiOV.js';
|
|
2
|
+
import '../constants-tYr0tCl8.js';
|
|
3
|
+
import '../core/transform.js';
|
|
4
|
+
import '../core/structure.js';
|
|
5
|
+
import '../core/environment.js';
|
|
6
|
+
import '../math/p5.Vector.js';
|
|
7
|
+
import '../rendering-B5TRR7aY.js';
|
|
8
|
+
import '../creating_reading-Cr8L2Jnm.js';
|
|
9
|
+
import 'colorjs.io/fn';
|
|
10
|
+
import './color_spaces/hsb.js';
|
|
11
|
+
import '../dom/p5.Element.js';
|
|
12
|
+
import '../dom/p5.File.js';
|
|
13
|
+
import '../io/p5.XML.js';
|
|
14
|
+
import '../p5.Renderer-Swjl9HQO.js';
|
|
15
|
+
import '../image/filters.js';
|
|
16
|
+
import '../shape/custom_shapes.js';
|
|
17
|
+
import '../core/States.js';
|
|
18
|
+
import '../io/utilities.js';
|
|
19
|
+
import 'file-saver';
|
|
20
|
+
import '../dom/p5.MediaElement.js';
|
|
21
|
+
import '../shape/2d_primitives.js';
|
|
22
|
+
import '../core/helpers.js';
|
|
23
|
+
import '../shape/attributes.js';
|
|
24
|
+
import '../shape/curves.js';
|
|
25
|
+
import '../shape/vertex.js';
|
|
26
|
+
import './setting.js';
|
|
27
|
+
import 'omggif';
|
|
28
|
+
import '../io/csv.js';
|
|
29
|
+
import 'gifenc';
|
|
30
|
+
import '../image/pixels.js';
|
|
31
|
+
import '../webgl/GeometryBuilder.js';
|
|
32
|
+
import '../math/p5.Matrix.js';
|
|
33
|
+
import '../math/Matrices/Matrix.js';
|
|
34
|
+
import '../math/Matrices/MatrixInterface.js';
|
|
35
|
+
import '../webgl/p5.Geometry.js';
|
|
36
|
+
import '../webgl/p5.DataArray.js';
|
|
37
|
+
import '../webgl/p5.Quat.js';
|
|
38
|
+
import '../webgl/p5.RenderBuffer.js';
|
|
39
|
+
import '../webgl/ShapeBuilder.js';
|
|
40
|
+
import 'libtess';
|
|
41
|
+
import '../webgl/GeometryBufferCache.js';
|
|
42
|
+
import '../image/const.js';
|
|
43
|
+
import '../math/trigonometry.js';
|
|
44
|
+
import '../image/filterRenderer2D.js';
|
|
45
|
+
|
|
1
46
|
/**
|
|
2
47
|
* @module Color
|
|
3
48
|
* @submodule Color Conversion
|
|
@@ -5,15 +50,6 @@
|
|
|
5
50
|
* @requires core
|
|
6
51
|
*/
|
|
7
52
|
|
|
8
|
-
/**
|
|
9
|
-
* Conversions adapted from <http://www.easyrgb.com/en/math.php>.
|
|
10
|
-
*
|
|
11
|
-
* In these functions, hue is always in the range [0, 1], just like all other
|
|
12
|
-
* components are in the range [0, 1]. 'Brightness' and 'value' are used
|
|
13
|
-
* interchangeably.
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
import p5 from '../core/main';
|
|
17
53
|
p5.ColorConversion = {
|
|
18
54
|
/**
|
|
19
55
|
* Convert an HSBA array to HSLA.
|
|
@@ -267,4 +303,6 @@ p5.ColorConversion = {
|
|
|
267
303
|
return [hue / 6, sat, li / 2, rgba[3]];
|
|
268
304
|
}
|
|
269
305
|
};
|
|
270
|
-
|
|
306
|
+
var color_conversion = p5.ColorConversion;
|
|
307
|
+
|
|
308
|
+
export { color_conversion as default };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ColorSpace, sRGB } from 'colorjs.io/fn';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
var HSBSpace = new ColorSpace({
|
|
4
4
|
id: 'hsb',
|
|
5
5
|
name: 'HSB',
|
|
6
6
|
coords: {
|
|
@@ -140,3 +140,5 @@ function toBase(hsb){
|
|
|
140
140
|
|
|
141
141
|
return RGB;
|
|
142
142
|
}
|
|
143
|
+
|
|
144
|
+
export { HSBSpace as default };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { c as creatingReading, a as color$1 } from '../creating_reading-Cr8L2Jnm.js';
|
|
2
|
+
import setting from './setting.js';
|
|
3
|
+
import 'colorjs.io/fn';
|
|
4
|
+
import './color_spaces/hsb.js';
|
|
5
|
+
import '../constants-tYr0tCl8.js';
|
|
6
|
+
|
|
7
|
+
function color(p5){
|
|
8
|
+
p5.registerAddon(creatingReading);
|
|
9
|
+
p5.registerAddon(color$1);
|
|
10
|
+
p5.registerAddon(setting);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export { color as default };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
import { N as NORMAL, u as BLEND } from '../constants-tYr0tCl8.js';
|
|
2
|
+
import { R as RGB, b as RGBHDR, H as HSB, d as HSL, e as HWB, L as LAB, f as LCH, O as OKLAB, g as OKLCH } from '../creating_reading-Cr8L2Jnm.js';
|
|
3
|
+
import 'colorjs.io/fn';
|
|
4
|
+
import './color_spaces/hsb.js';
|
|
5
|
+
|
|
1
6
|
/**
|
|
2
7
|
* @module Color
|
|
3
8
|
* @submodule Setting
|
|
@@ -6,8 +11,6 @@
|
|
|
6
11
|
* @requires constants
|
|
7
12
|
*/
|
|
8
13
|
|
|
9
|
-
import * as constants from '../core/constants';
|
|
10
|
-
import { RGB, RGBHDR, HSL, HSB, HWB, LAB, LCH, OKLAB, OKLCH } from './creating_reading';
|
|
11
14
|
|
|
12
15
|
function setting(p5, fn){
|
|
13
16
|
/**
|
|
@@ -2393,19 +2396,19 @@ function setting(p5, fn){
|
|
|
2393
2396
|
*/
|
|
2394
2397
|
fn.blendMode = function (mode) {
|
|
2395
2398
|
// p5._validateParameters('blendMode', arguments);
|
|
2396
|
-
if (mode ===
|
|
2399
|
+
if (mode === NORMAL) {
|
|
2397
2400
|
// Warning added 3/26/19, can be deleted in future (1.0 release?)
|
|
2398
2401
|
console.warn(
|
|
2399
2402
|
'NORMAL has been deprecated for use in blendMode. defaulting to BLEND instead.'
|
|
2400
2403
|
);
|
|
2401
|
-
mode =
|
|
2404
|
+
mode = BLEND;
|
|
2402
2405
|
}
|
|
2403
2406
|
this._renderer.blendMode(mode);
|
|
2404
2407
|
};
|
|
2405
2408
|
}
|
|
2406
2409
|
|
|
2407
|
-
export default setting;
|
|
2408
|
-
|
|
2409
2410
|
if(typeof p5 !== 'undefined'){
|
|
2410
2411
|
setting(p5, p5.prototype);
|
|
2411
2412
|
}
|
|
2413
|
+
|
|
2414
|
+
export { setting as default };
|