@loaders.gl/ply 3.3.0-alpha.7 → 3.3.0-alpha.9
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/ply-loader.js
CHANGED
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports._typecheckPLYLoader = exports.PLYLoader = void 0;
|
|
7
7
|
|
|
8
|
-
var VERSION = typeof "3.3.0-alpha.
|
|
8
|
+
var VERSION = typeof "3.3.0-alpha.9" !== 'undefined' ? "3.3.0-alpha.9" : 'latest';
|
|
9
9
|
|
|
10
10
|
var PLYLoader = {
|
|
11
11
|
name: 'PLY',
|
package/dist/esm/ply-loader.js
CHANGED
package/dist/lib/ply-types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Mesh } from '@loaders.gl/schema';
|
|
2
|
-
export
|
|
2
|
+
export type PLYHeader = {
|
|
3
3
|
format?: string;
|
|
4
4
|
comments: string[];
|
|
5
5
|
elements: any[];
|
|
@@ -7,21 +7,21 @@ export declare type PLYHeader = {
|
|
|
7
7
|
headerLength?: number;
|
|
8
8
|
};
|
|
9
9
|
/** A parsed PLY mesh */
|
|
10
|
-
export
|
|
10
|
+
export type PLYMesh = Mesh & {
|
|
11
11
|
loader: 'ply';
|
|
12
12
|
loaderData: PLYHeader;
|
|
13
13
|
};
|
|
14
|
-
export
|
|
14
|
+
export type MeshHeader = {
|
|
15
15
|
vertexCount?: number;
|
|
16
16
|
boundingBox?: [[number, number, number], [number, number, number]];
|
|
17
17
|
};
|
|
18
|
-
export
|
|
18
|
+
export type PLYAttributes = {
|
|
19
19
|
[index: string]: number[];
|
|
20
20
|
};
|
|
21
|
-
export
|
|
21
|
+
export type PLYProperty = {
|
|
22
22
|
[index: string]: string;
|
|
23
23
|
};
|
|
24
|
-
export
|
|
24
|
+
export type ASCIIElement = {
|
|
25
25
|
name: string;
|
|
26
26
|
count: number;
|
|
27
27
|
properties: any[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ply-types.d.ts","sourceRoot":"","sources":["../../src/lib/ply-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,oBAAoB,CAAC;AAE7C,
|
|
1
|
+
{"version":3,"file":"ply-types.d.ts","sourceRoot":"","sources":["../../src/lib/ply-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,IAAI,EAAC,MAAM,oBAAoB,CAAC;AAE7C,MAAM,MAAM,SAAS,GAAG;IACtB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,QAAQ,EAAE,GAAG,EAAE,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,wBAAwB;AACxB,MAAM,MAAM,OAAO,GAAG,IAAI,GAAG;IAC3B,MAAM,EAAE,KAAK,CAAC;IACd,UAAU,EAAE,SAAS,CAAC;CACvB,CAAC;AAIF,MAAM,MAAM,UAAU,GAAG;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,CAAC,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;CACpE,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,GAAG,EAAE,CAAC;CACnB,CAAC"}
|
package/dist/ply-worker.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loaders.gl/ply",
|
|
3
|
-
"version": "3.3.0-alpha.
|
|
3
|
+
"version": "3.3.0-alpha.9",
|
|
4
4
|
"description": "Framework-independent loader for the PLY format",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@babel/runtime": "^7.3.1",
|
|
37
|
-
"@loaders.gl/loader-utils": "3.3.0-alpha.
|
|
38
|
-
"@loaders.gl/schema": "3.3.0-alpha.
|
|
37
|
+
"@loaders.gl/loader-utils": "3.3.0-alpha.9",
|
|
38
|
+
"@loaders.gl/schema": "3.3.0-alpha.9"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "c95a4ff72512668a93d9041ce8636bac09333fd5"
|
|
41
41
|
}
|