@loaders.gl/math 3.4.13 → 3.4.15
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/es5/geometry/attributes/compute-bounding-box.js +16 -28
- package/dist/es5/geometry/attributes/compute-bounding-box.js.map +1 -1
- package/dist/es5/geometry/attributes/compute-vertex-normals.js +29 -38
- package/dist/es5/geometry/attributes/compute-vertex-normals.js.map +1 -1
- package/dist/es5/geometry/attributes/convert-to-non-indexed.js +13 -23
- package/dist/es5/geometry/attributes/convert-to-non-indexed.js.map +1 -1
- package/dist/es5/geometry/attributes/get-attribute-from-geometry.js +4 -2
- package/dist/es5/geometry/attributes/get-attribute-from-geometry.js.map +1 -1
- package/dist/es5/geometry/attributes/normalize.js +3 -3
- package/dist/es5/geometry/colors/rgb565.js +7 -7
- package/dist/es5/geometry/colors/rgb565.js.map +1 -1
- package/dist/es5/geometry/compression/attribute-compression.js +39 -39
- package/dist/es5/geometry/compression/attribute-compression.js.map +1 -1
- package/dist/es5/geometry/constants.js +7 -8
- package/dist/es5/geometry/constants.js.map +1 -1
- package/dist/es5/geometry/gl/gl-type.js +56 -69
- package/dist/es5/geometry/gl/gl-type.js.map +1 -1
- package/dist/es5/geometry/is-geometry.js +1 -3
- package/dist/es5/geometry/is-geometry.js.map +1 -1
- package/dist/es5/geometry/iterators/attribute-iterator.js +8 -29
- package/dist/es5/geometry/iterators/attribute-iterator.js.map +1 -1
- package/dist/es5/geometry/iterators/primitive-iterator.js +46 -66
- package/dist/es5/geometry/iterators/primitive-iterator.js.map +1 -1
- package/dist/es5/geometry/typed-arrays/typed-array-utils.js +8 -8
- package/dist/es5/geometry/typed-arrays/typed-array-utils.js.map +1 -1
- package/dist/es5/index.js +24 -24
- package/package.json +4 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"primitive-iterator.js","names":["_constants","require","_modes","_loaderUtils","makePrimitiveIterator","indices","attributes","arguments","length","undefined","mode","start","end","
|
|
1
|
+
{"version":3,"file":"primitive-iterator.js","names":["_constants","require","_modes","_loaderUtils","makePrimitiveIterator","indices","attributes","arguments","length","undefined","mode","start","end","values","value","info","type","getPrimitiveModeType","i1","i2","i3","i","GL","POINTS","LINES","LINE_STRIP","LINE_LOOP","TRIANGLES","TRIANGLE_STRIP","TRIANGLE_FAN","assert"],"sources":["../../../../src/geometry/iterators/primitive-iterator.ts"],"sourcesContent":["import {GL} from '../constants';\nimport {getPrimitiveModeType} from '../primitives/modes';\nimport {assert} from '@loaders.gl/loader-utils';\n\n/**\n * Iteration info for making primitive iterator\n */\ntype Information = {\n attributes: object;\n type: number | void;\n i1: number;\n i2: number;\n i3: number;\n primitiveIndex?: object;\n};\n/**\n * Will iterate over each primitive, expanding (dereferencing) indices\n * @param indices\n * @param attributes\n * @param mode\n * @param start\n * @param end\n */\n// eslint-disable-next-line complexity\nexport function* makePrimitiveIterator(\n indices?: any,\n attributes: object = {},\n mode?: number,\n start = 0,\n end?: number\n): Iterable<{attributes: object; type: number; i1: number; i2: number; i3: number}> {\n // support indices being an object with a values array\n if (indices) {\n indices = indices.values || indices.value || indices;\n }\n\n // Autodeduce length from indices\n if (end === undefined) {\n end = indices ? indices.length : start;\n }\n\n // iteration info\n const info: Information = {\n attributes,\n type: getPrimitiveModeType(mode),\n i1: 0,\n i2: 0,\n i3: 0\n };\n\n let i = start;\n // @ts-ignore\n while (i < end) {\n switch (mode) {\n case GL.POINTS: // draw single points.\n info.i1 = i;\n i += 1;\n break;\n case GL.LINES: // draw lines. Each set of two vertices is treated as a separate line segment.\n info.i1 = i;\n info.i2 = i + 1;\n i += 2;\n break;\n case GL.LINE_STRIP: // draw lines. Each vertex connects to the one after it.\n info.i1 = i;\n info.i2 = i + 1;\n i += 1;\n break;\n case GL.LINE_LOOP: // draw a connected group of line segments from the first vertex to the last\n info.i1 = i;\n info.i2 = i + 1;\n i += 1;\n break;\n case GL.TRIANGLES: // draw triangles. Each set of three vertices creates a separate triangle.\n info.i1 = i;\n info.i2 = i + 1;\n info.i3 = i + 2;\n i += 3;\n break;\n case GL.TRIANGLE_STRIP: // draw a connected group of triangles.\n info.i1 = i;\n info.i2 = i + 1;\n i += 1;\n break;\n case GL.TRIANGLE_FAN: // draw a connected group of triangles.\n info.i1 = 1;\n info.i2 = i;\n info.i3 = i + 1;\n i += 1;\n break;\n\n default:\n assert(false);\n }\n\n // if indices are present, lookup actual vertices in indices\n if (indices) {\n if ('i1' in info) {\n info.i1 = indices[info.i1];\n info.i2 = indices[info.i2];\n info.i3 = indices[info.i3];\n }\n }\n // @ts-ignore\n yield info;\n }\n}\n"],"mappings":"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"}
|
|
@@ -5,17 +5,17 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.concatTypedArrays = concatTypedArrays;
|
|
7
7
|
function concatTypedArrays() {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
for (
|
|
8
|
+
let arrays = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
|
|
9
|
+
let byteLength = 0;
|
|
10
|
+
for (let i = 0; i < arrays.length; ++i) {
|
|
11
11
|
byteLength += arrays[i].byteLength;
|
|
12
12
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
for (
|
|
16
|
-
|
|
13
|
+
const buffer = new Uint8Array(byteLength);
|
|
14
|
+
let byteOffset = 0;
|
|
15
|
+
for (let i = 0; i < arrays.length; ++i) {
|
|
16
|
+
const data = new Uint8Array(arrays[i].buffer);
|
|
17
17
|
byteLength = data.length;
|
|
18
|
-
for (
|
|
18
|
+
for (let j = 0; j < byteLength; ++j) {
|
|
19
19
|
buffer[byteOffset++] = data[j];
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typed-array-utils.js","names":["concatTypedArrays","arrays","arguments","length","undefined","byteLength","i","buffer","Uint8Array","byteOffset","data","j"],"sources":["../../../../src/geometry/typed-arrays/typed-array-utils.ts"],"sourcesContent":["/**\n * Concats typed arrays\n * @param arrays\n * @returns new Uint8Array\n */\nexport function concatTypedArrays(arrays: any = []): Uint8Array {\n let byteLength = 0;\n for (let i = 0; i < arrays.length; ++i) {\n byteLength += arrays[i].byteLength;\n }\n const buffer = new Uint8Array(byteLength);\n\n let byteOffset = 0;\n for (let i = 0; i < arrays.length; ++i) {\n const data = new Uint8Array(arrays[i].buffer);\n byteLength = data.length;\n for (let j = 0; j < byteLength; ++j) {\n buffer[byteOffset++] = data[j];\n }\n }\n return buffer;\n}\n"],"mappings":";;;;;;AAKO,SAASA,iBAAiBA,CAAA,EAA+B;EAAA,IAA9BC,MAAW,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,EAAE;EAChD,IAAIG,UAAU,GAAG,CAAC;EAClB,KAAK,IAAIC,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGL,MAAM,CAACE,MAAM,EAAE,EAAEG,CAAC,EAAE;IACtCD,UAAU,IAAIJ,MAAM,CAACK,CAAC,CAAC,CAACD,UAAU;EACpC;EACA,
|
|
1
|
+
{"version":3,"file":"typed-array-utils.js","names":["concatTypedArrays","arrays","arguments","length","undefined","byteLength","i","buffer","Uint8Array","byteOffset","data","j"],"sources":["../../../../src/geometry/typed-arrays/typed-array-utils.ts"],"sourcesContent":["/**\n * Concats typed arrays\n * @param arrays\n * @returns new Uint8Array\n */\nexport function concatTypedArrays(arrays: any = []): Uint8Array {\n let byteLength = 0;\n for (let i = 0; i < arrays.length; ++i) {\n byteLength += arrays[i].byteLength;\n }\n const buffer = new Uint8Array(byteLength);\n\n let byteOffset = 0;\n for (let i = 0; i < arrays.length; ++i) {\n const data = new Uint8Array(arrays[i].buffer);\n byteLength = data.length;\n for (let j = 0; j < byteLength; ++j) {\n buffer[byteOffset++] = data[j];\n }\n }\n return buffer;\n}\n"],"mappings":";;;;;;AAKO,SAASA,iBAAiBA,CAAA,EAA+B;EAAA,IAA9BC,MAAW,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,EAAE;EAChD,IAAIG,UAAU,GAAG,CAAC;EAClB,KAAK,IAAIC,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGL,MAAM,CAACE,MAAM,EAAE,EAAEG,CAAC,EAAE;IACtCD,UAAU,IAAIJ,MAAM,CAACK,CAAC,CAAC,CAACD,UAAU;EACpC;EACA,MAAME,MAAM,GAAG,IAAIC,UAAU,CAACH,UAAU,CAAC;EAEzC,IAAII,UAAU,GAAG,CAAC;EAClB,KAAK,IAAIH,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGL,MAAM,CAACE,MAAM,EAAE,EAAEG,CAAC,EAAE;IACtC,MAAMI,IAAI,GAAG,IAAIF,UAAU,CAACP,MAAM,CAACK,CAAC,CAAC,CAACC,MAAM,CAAC;IAC7CF,UAAU,GAAGK,IAAI,CAACP,MAAM;IACxB,KAAK,IAAIQ,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGN,UAAU,EAAE,EAAEM,CAAC,EAAE;MACnCJ,MAAM,CAACE,UAAU,EAAE,CAAC,GAAGC,IAAI,CAACC,CAAC,CAAC;IAChC;EACF;EACA,OAAOJ,MAAM;AACf"}
|
package/dist/es5/index.js
CHANGED
|
@@ -6,145 +6,145 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
});
|
|
7
7
|
Object.defineProperty(exports, "GL", {
|
|
8
8
|
enumerable: true,
|
|
9
|
-
get: function
|
|
9
|
+
get: function () {
|
|
10
10
|
return _constants.GL;
|
|
11
11
|
}
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "GLType", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function
|
|
15
|
+
get: function () {
|
|
16
16
|
return _glType.default;
|
|
17
17
|
}
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "GL_TYPE", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function
|
|
21
|
+
get: function () {
|
|
22
22
|
return _constants.GL_TYPE;
|
|
23
23
|
}
|
|
24
24
|
});
|
|
25
25
|
Object.defineProperty(exports, "compressTextureCoordinates", {
|
|
26
26
|
enumerable: true,
|
|
27
|
-
get: function
|
|
27
|
+
get: function () {
|
|
28
28
|
return _attributeCompression.compressTextureCoordinates;
|
|
29
29
|
}
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "computeVertexNormals", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function
|
|
33
|
+
get: function () {
|
|
34
34
|
return _computeVertexNormals.computeVertexNormals;
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
37
|
Object.defineProperty(exports, "concatTypedArrays", {
|
|
38
38
|
enumerable: true,
|
|
39
|
-
get: function
|
|
39
|
+
get: function () {
|
|
40
40
|
return _typedArrayUtils.concatTypedArrays;
|
|
41
41
|
}
|
|
42
42
|
});
|
|
43
43
|
Object.defineProperty(exports, "decodeRGB565", {
|
|
44
44
|
enumerable: true,
|
|
45
|
-
get: function
|
|
45
|
+
get: function () {
|
|
46
46
|
return _rgb.decodeRGB565;
|
|
47
47
|
}
|
|
48
48
|
});
|
|
49
49
|
Object.defineProperty(exports, "decompressTextureCoordinates", {
|
|
50
50
|
enumerable: true,
|
|
51
|
-
get: function
|
|
51
|
+
get: function () {
|
|
52
52
|
return _attributeCompression.decompressTextureCoordinates;
|
|
53
53
|
}
|
|
54
54
|
});
|
|
55
55
|
Object.defineProperty(exports, "encodeRGB565", {
|
|
56
56
|
enumerable: true,
|
|
57
|
-
get: function
|
|
57
|
+
get: function () {
|
|
58
58
|
return _rgb.encodeRGB565;
|
|
59
59
|
}
|
|
60
60
|
});
|
|
61
61
|
Object.defineProperty(exports, "isGeometry", {
|
|
62
62
|
enumerable: true,
|
|
63
|
-
get: function
|
|
63
|
+
get: function () {
|
|
64
64
|
return _isGeometry.default;
|
|
65
65
|
}
|
|
66
66
|
});
|
|
67
67
|
Object.defineProperty(exports, "makeAttributeIterator", {
|
|
68
68
|
enumerable: true,
|
|
69
|
-
get: function
|
|
69
|
+
get: function () {
|
|
70
70
|
return _attributeIterator.makeAttributeIterator;
|
|
71
71
|
}
|
|
72
72
|
});
|
|
73
73
|
Object.defineProperty(exports, "makePrimitiveIterator", {
|
|
74
74
|
enumerable: true,
|
|
75
|
-
get: function
|
|
75
|
+
get: function () {
|
|
76
76
|
return _primitiveIterator.makePrimitiveIterator;
|
|
77
77
|
}
|
|
78
78
|
});
|
|
79
79
|
Object.defineProperty(exports, "octDecode", {
|
|
80
80
|
enumerable: true,
|
|
81
|
-
get: function
|
|
81
|
+
get: function () {
|
|
82
82
|
return _attributeCompression.octDecode;
|
|
83
83
|
}
|
|
84
84
|
});
|
|
85
85
|
Object.defineProperty(exports, "octDecodeFloat", {
|
|
86
86
|
enumerable: true,
|
|
87
|
-
get: function
|
|
87
|
+
get: function () {
|
|
88
88
|
return _attributeCompression.octDecodeFloat;
|
|
89
89
|
}
|
|
90
90
|
});
|
|
91
91
|
Object.defineProperty(exports, "octDecodeFromVector4", {
|
|
92
92
|
enumerable: true,
|
|
93
|
-
get: function
|
|
93
|
+
get: function () {
|
|
94
94
|
return _attributeCompression.octDecodeFromVector4;
|
|
95
95
|
}
|
|
96
96
|
});
|
|
97
97
|
Object.defineProperty(exports, "octDecodeInRange", {
|
|
98
98
|
enumerable: true,
|
|
99
|
-
get: function
|
|
99
|
+
get: function () {
|
|
100
100
|
return _attributeCompression.octDecodeInRange;
|
|
101
101
|
}
|
|
102
102
|
});
|
|
103
103
|
Object.defineProperty(exports, "octEncode", {
|
|
104
104
|
enumerable: true,
|
|
105
|
-
get: function
|
|
105
|
+
get: function () {
|
|
106
106
|
return _attributeCompression.octEncode;
|
|
107
107
|
}
|
|
108
108
|
});
|
|
109
109
|
Object.defineProperty(exports, "octEncodeFloat", {
|
|
110
110
|
enumerable: true,
|
|
111
|
-
get: function
|
|
111
|
+
get: function () {
|
|
112
112
|
return _attributeCompression.octEncodeFloat;
|
|
113
113
|
}
|
|
114
114
|
});
|
|
115
115
|
Object.defineProperty(exports, "octEncodeInRange", {
|
|
116
116
|
enumerable: true,
|
|
117
|
-
get: function
|
|
117
|
+
get: function () {
|
|
118
118
|
return _attributeCompression.octEncodeInRange;
|
|
119
119
|
}
|
|
120
120
|
});
|
|
121
121
|
Object.defineProperty(exports, "octEncodeToVector4", {
|
|
122
122
|
enumerable: true,
|
|
123
|
-
get: function
|
|
123
|
+
get: function () {
|
|
124
124
|
return _attributeCompression.octEncodeToVector4;
|
|
125
125
|
}
|
|
126
126
|
});
|
|
127
127
|
Object.defineProperty(exports, "octPack", {
|
|
128
128
|
enumerable: true,
|
|
129
|
-
get: function
|
|
129
|
+
get: function () {
|
|
130
130
|
return _attributeCompression.octPack;
|
|
131
131
|
}
|
|
132
132
|
});
|
|
133
133
|
Object.defineProperty(exports, "octPackFloat", {
|
|
134
134
|
enumerable: true,
|
|
135
|
-
get: function
|
|
135
|
+
get: function () {
|
|
136
136
|
return _attributeCompression.octPackFloat;
|
|
137
137
|
}
|
|
138
138
|
});
|
|
139
139
|
Object.defineProperty(exports, "octUnpack", {
|
|
140
140
|
enumerable: true,
|
|
141
|
-
get: function
|
|
141
|
+
get: function () {
|
|
142
142
|
return _attributeCompression.octUnpack;
|
|
143
143
|
}
|
|
144
144
|
});
|
|
145
145
|
Object.defineProperty(exports, "zigZagDeltaDecode", {
|
|
146
146
|
enumerable: true,
|
|
147
|
-
get: function
|
|
147
|
+
get: function () {
|
|
148
148
|
return _attributeCompression.zigZagDeltaDecode;
|
|
149
149
|
}
|
|
150
150
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/math",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.15",
|
|
4
4
|
"description": "Experimental math classes for loaders.gl",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"pre-build": "echo \"Nothing to build in @loaders.gl/math\""
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@loaders.gl/images": "3.4.
|
|
35
|
-
"@loaders.gl/loader-utils": "3.4.
|
|
34
|
+
"@loaders.gl/images": "3.4.15",
|
|
35
|
+
"@loaders.gl/loader-utils": "3.4.15",
|
|
36
36
|
"@math.gl/core": "^3.5.1"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "19e941d5805568e449ef9092490d6568a4853298"
|
|
39
39
|
}
|