p5 2.0.1 → 2.0.3
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/dist/accessibility/color_namer.js +5 -5
- package/dist/accessibility/describe.js +10 -0
- package/dist/accessibility/index.js +5 -5
- package/dist/accessibility/outputs.js +21 -0
- package/dist/app.js +5 -5
- package/dist/color/color_conversion.js +5 -5
- package/dist/color/creating_reading.js +1 -1
- package/dist/color/index.js +2 -2
- package/dist/color/p5.Color.js +1 -1
- package/dist/color/setting.js +2 -2
- package/dist/{constants-C-g_eAdC.js → constants-BRcElHU3.js} +19 -3
- package/dist/core/constants.js +1 -1
- package/dist/core/environment.js +6 -5
- package/dist/core/friendly_errors/fes_core.js +1 -1
- package/dist/core/friendly_errors/index.js +1 -1
- package/dist/core/friendly_errors/param_validator.js +46 -93
- package/dist/core/friendly_errors/sketch_reader.js +5 -5
- package/dist/core/friendly_errors/sketch_verifier.js +1 -1
- package/dist/core/friendly_errors/validate_params.js +5 -5
- package/dist/core/helpers.js +1 -1
- package/dist/core/init.js +5 -5
- package/dist/core/legacy.js +5 -5
- package/dist/core/main.js +5 -5
- package/dist/core/p5.Graphics.js +4 -4
- package/dist/core/p5.Renderer.js +3 -3
- package/dist/core/p5.Renderer2D.js +5 -5
- package/dist/core/rendering.js +4 -4
- package/dist/{creating_reading-D4AAKRbx.js → creating_reading-Cr8L2Jnm.js} +2 -2
- package/dist/dom/dom.js +10 -10
- package/dist/dom/index.js +2 -2
- package/dist/dom/p5.Element.js +2 -2
- package/dist/dom/p5.MediaElement.js +2 -2
- package/dist/events/acceleration.js +24 -24
- package/dist/events/keyboard.js +11 -6
- package/dist/image/const.js +1 -1
- package/dist/image/filterRenderer2D.js +4 -4
- package/dist/image/image.js +4 -4
- package/dist/image/index.js +4 -4
- package/dist/image/loading_displaying.js +4 -4
- package/dist/image/p5.Image.js +3 -3
- package/dist/image/pixels.js +1 -0
- package/dist/io/files.js +4 -4
- package/dist/io/index.js +4 -4
- package/dist/io/p5.TableRow.js +2 -2
- package/dist/{main-s72KWcUy.js → main-BKN5yFoS.js} +12 -9
- package/dist/math/Matrices/Matrix.js +1 -1
- package/dist/math/Matrices/MatrixNumjs.js +1 -1
- package/dist/math/index.js +1 -1
- package/dist/math/math.js +1 -1
- package/dist/math/p5.Matrix.js +1 -1
- package/dist/math/p5.Vector.js +1 -1
- package/dist/math/trigonometry.js +1 -1
- package/dist/{p5.Renderer-CwAYZOC2.js → p5.Renderer-R23xoC7s.js} +5 -5
- package/dist/{rendering--aAe5aq3.js → rendering-CvUVN-Vb.js} +101 -66
- package/dist/shape/2d_primitives.js +1 -1
- package/dist/shape/attributes.js +1 -1
- package/dist/shape/custom_shapes.js +2 -2
- package/dist/shape/index.js +2 -2
- package/dist/type/index.js +3 -3
- package/dist/type/p5.Font.js +3 -5
- package/dist/type/textCore.js +4 -4
- package/dist/webgl/3d_primitives.js +4 -4
- package/dist/webgl/GeometryBuilder.js +1 -1
- package/dist/webgl/ShapeBuilder.js +1 -1
- package/dist/webgl/index.js +4 -4
- package/dist/webgl/interaction.js +1 -1
- package/dist/webgl/light.js +4 -4
- package/dist/webgl/loading.js +5 -4
- package/dist/webgl/material.js +4 -4
- package/dist/webgl/p5.Camera.js +4 -4
- package/dist/webgl/p5.Framebuffer.js +4 -4
- package/dist/webgl/p5.Geometry.js +1 -1
- package/dist/webgl/p5.Quat.js +1 -1
- package/dist/webgl/p5.RendererGL.js +4 -4
- package/dist/webgl/p5.Shader.js +4 -4
- package/dist/webgl/p5.Texture.js +4 -4
- package/dist/webgl/text.js +32 -34
- package/lib/p5.esm.js +289 -247
- package/lib/p5.js +289 -247
- package/lib/p5.min.js +1 -1
- package/package.json +1 -2
- 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 +5999 -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 +501 -0
- package/types/events/pointer.d.ts +782 -0
- package/types/global.d.ts +5544 -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 +6666 -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 +482 -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
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
// This file is auto-generated from JSDoc documentation
|
|
2
|
+
|
|
3
|
+
import p5 from 'p5';
|
|
4
|
+
|
|
5
|
+
declare module 'p5' {
|
|
6
|
+
/**
|
|
7
|
+
* Initializes common texture parameters, creates a gl texture,
|
|
8
|
+
* tries to upload the texture for the first time if data is
|
|
9
|
+
* already available.
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
function init(data: any): void;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Checks if the source data for this texture has changed (if it's
|
|
16
|
+
* easy to do so) and reuploads the texture if necessary. If it's not
|
|
17
|
+
* possible or to expensive to do a calculation to determine wheter or
|
|
18
|
+
* not the data has occurred, this method simply re-uploads the texture.
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
function update(): void;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Binds the texture to the appropriate GL target.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
function bindTexture(): void;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Unbinds the texture from the appropriate GL target.
|
|
31
|
+
*
|
|
32
|
+
*/
|
|
33
|
+
function unbindTexture(): void;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Sets how a texture is be interpolated when upscaled or downscaled.
|
|
37
|
+
* Nearest filtering uses nearest neighbor scaling when interpolating
|
|
38
|
+
* Linear filtering uses WebGL's linear scaling when interpolating
|
|
39
|
+
*
|
|
40
|
+
* @param Specifies the texture filtering when
|
|
41
|
+
* textures are shrunk. Options are LINEAR or NEAREST
|
|
42
|
+
* @param Specifies the texture filtering when
|
|
43
|
+
* textures are magnified. Options are LINEAR or NEAREST
|
|
44
|
+
* @todo implement mipmapping filters
|
|
45
|
+
*/
|
|
46
|
+
function setInterpolation(downScale: string, upScale: string): void;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Sets the texture wrapping mode. This controls how textures behave
|
|
50
|
+
* when their uv's go outside of the 0 - 1 range. There are three options:
|
|
51
|
+
* CLAMP, REPEAT, and MIRROR. REPEAT & MIRROR are only available if the texture
|
|
52
|
+
* is a power of two size (128, 256, 512, 1024, etc.).
|
|
53
|
+
*
|
|
54
|
+
* @param Controls the horizontal texture wrapping behavior
|
|
55
|
+
* @param Controls the vertical texture wrapping behavior
|
|
56
|
+
*/
|
|
57
|
+
function setWrapMode(wrapX: string, wrapY: string): void;
|
|
58
|
+
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export default function p5_Texture(p5: any, fn: any): void;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
// This file is auto-generated from JSDoc documentation
|
|
2
|
+
|
|
3
|
+
import p5 from 'p5';
|
|
4
|
+
|
|
5
|
+
declare module 'p5' {
|
|
6
|
+
/**
|
|
7
|
+
* @param the x positions of points in the curve
|
|
8
|
+
* @param the y positions of points in the curve
|
|
9
|
+
* @param the curve information
|
|
10
|
+
*
|
|
11
|
+
* adds a curve to the rows & columns that it intersects with
|
|
12
|
+
*/
|
|
13
|
+
function push(xs: number[], ys: number[], v: object): void;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* @param the value to scale
|
|
17
|
+
*
|
|
18
|
+
* converts a floating-point number in the range 0-1 to a byte 0-255
|
|
19
|
+
*/
|
|
20
|
+
function byte(v: number): void;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* @param writes the next pixel into an indexed ImageData
|
|
24
|
+
*/
|
|
25
|
+
function setPixel(imageInfo: object, r: number, g: number, b: number, a: number): void;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @param the list of values to compare
|
|
29
|
+
* @param the initial minimum value
|
|
30
|
+
* @param the initial maximum value
|
|
31
|
+
*
|
|
32
|
+
* find the minimum & maximum value in a list of values
|
|
33
|
+
*/
|
|
34
|
+
function minMax(rg: number[], min: number, max: number): void;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* @param the value to clamp
|
|
38
|
+
* @param the minimum value
|
|
39
|
+
* @param the maxmimum value
|
|
40
|
+
*
|
|
41
|
+
* clamps a value between a minimum & maximum value
|
|
42
|
+
*/
|
|
43
|
+
function clamp(v: number, min: number, max: number): void;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* @returns an array of cubics whose quadratic approximations
|
|
47
|
+
* closely match the civen cubic.
|
|
48
|
+
*
|
|
49
|
+
* converts a cubic curve to a list of quadratics.
|
|
50
|
+
*/
|
|
51
|
+
function cubicToQuadratics(x0: number, y0: number, cx0: number, cy0: number, cx1: number, cy1: number, x1: number, y1: number): Cubic[];
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @param add a straight line to the row/col grid of a glyph
|
|
55
|
+
*/
|
|
56
|
+
function pushLine(x0: number, y0: number, x1: number, y1: number): void;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @return true if the two points are sufficiently close
|
|
60
|
+
*
|
|
61
|
+
* tests if two points are close enough to be considered the same
|
|
62
|
+
*/
|
|
63
|
+
function samePoint(x0: number, y0: number, x1: number, y1: number): boolean;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* @return lays out the curves in a dimension (row or col) into two
|
|
67
|
+
* images, one for the indices of the curves themselves, and
|
|
68
|
+
* one containing the offset and length of those index spans.
|
|
69
|
+
*/
|
|
70
|
+
function layout(dimImageInfos: ImageInfo[], cellImageInfos: ImageInfo[]): object;
|
|
71
|
+
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export default function text(p5: any, fn: any): void;
|