Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add SPDX license headers #10

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion modules/core/src/classes/base/math-array.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// math.gl, MIT License
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

import {NumericArray} from '@math.gl/types';
import {ConfigurationOptions, config, formatValue, equals, isArray} from '../../lib/common';

Expand Down Expand Up @@ -47,7 +50,7 @@
return Array.isArray(arrayOrObject)
? this.copy(arrayOrObject)
: // @ts-ignore
this.fromObject(arrayOrObject);

Check warning on line 53 in modules/core/src/classes/base/math-array.ts

View workflow job for this annotation

GitHub Actions / test (20)

Expected indentation of 6 spaces but found 8
}

to<T extends NumericArray | Record<string, unknown>>(arrayOrObject: T): T {
Expand Down
5 changes: 4 additions & 1 deletion modules/core/src/classes/base/matrix.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {NumericArray} from '@math.gl/types';
import {MathArray} from './math-array';
import {checkNumber} from '../../lib/validators';
Expand Down
5 changes: 4 additions & 1 deletion modules/core/src/classes/base/vector.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {NumericArray} from '@math.gl/types';
import {MathArray} from './math-array';
import {checkNumber} from '../../lib/validators';
Expand Down
5 changes: 4 additions & 1 deletion modules/core/src/classes/euler.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {MathArray} from './base/math-array';
import {Quaternion} from './quaternion';
import {NumericArray} from '@math.gl/types';
Expand Down Expand Up @@ -287,17 +290,17 @@
getQuaternion(): Quaternion {
const q = new Quaternion();
switch (this[3]) {
case RotationOrder.XYZ:

Check warning on line 293 in modules/core/src/classes/euler.ts

View workflow job for this annotation

GitHub Actions / test (20)

The case statement does not have a shared enum type with the switch predicate
return q.rotateX(this[0]).rotateY(this[1]).rotateZ(this[2]);
case RotationOrder.YXZ:

Check warning on line 295 in modules/core/src/classes/euler.ts

View workflow job for this annotation

GitHub Actions / test (20)

The case statement does not have a shared enum type with the switch predicate
return q.rotateY(this[0]).rotateX(this[1]).rotateZ(this[2]);
case RotationOrder.ZXY:

Check warning on line 297 in modules/core/src/classes/euler.ts

View workflow job for this annotation

GitHub Actions / test (20)

The case statement does not have a shared enum type with the switch predicate
return q.rotateZ(this[0]).rotateX(this[1]).rotateY(this[2]);
case RotationOrder.ZYX:

Check warning on line 299 in modules/core/src/classes/euler.ts

View workflow job for this annotation

GitHub Actions / test (20)

The case statement does not have a shared enum type with the switch predicate
return q.rotateZ(this[0]).rotateY(this[1]).rotateX(this[2]);
case RotationOrder.YZX:

Check warning on line 301 in modules/core/src/classes/euler.ts

View workflow job for this annotation

GitHub Actions / test (20)

The case statement does not have a shared enum type with the switch predicate
return q.rotateY(this[0]).rotateZ(this[1]).rotateX(this[2]);
case RotationOrder.XZY:

Check warning on line 303 in modules/core/src/classes/euler.ts

View workflow job for this annotation

GitHub Actions / test (20)

The case statement does not have a shared enum type with the switch predicate
return q.rotateX(this[0]).rotateZ(this[1]).rotateY(this[2]);
default:
throw new Error(ERR_UNKNOWN_ORDER);
Expand Down Expand Up @@ -404,7 +407,7 @@
const d = Math.sin(y);
const f = Math.sin(z);
switch (this[3]) {
case Euler.XYZ: {

Check warning on line 410 in modules/core/src/classes/euler.ts

View workflow job for this annotation

GitHub Actions / test (20)

The case statement does not have a shared enum type with the switch predicate
const ae = a * e,
af = a * f,
be = b * e,
Expand All @@ -420,7 +423,7 @@
te[10] = a * c;
break;
}
case Euler.YXZ: {

Check warning on line 426 in modules/core/src/classes/euler.ts

View workflow job for this annotation

GitHub Actions / test (20)

The case statement does not have a shared enum type with the switch predicate
const ce = c * e,
cf = c * f,
de = d * e,
Expand All @@ -436,7 +439,7 @@
te[10] = a * c;
break;
}
case Euler.ZXY: {

Check warning on line 442 in modules/core/src/classes/euler.ts

View workflow job for this annotation

GitHub Actions / test (20)

The case statement does not have a shared enum type with the switch predicate
const ce = c * e,
cf = c * f,
de = d * e,
Expand Down
4 changes: 3 additions & 1 deletion modules/core/src/classes/matrix3.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {NumericArray} from '@math.gl/types';
import {Matrix} from './base/matrix';
Expand Down
4 changes: 3 additions & 1 deletion modules/core/src/classes/matrix4.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {NumericArray} from '@math.gl/types';
import {Matrix} from './base/matrix';
Expand Down
5 changes: 4 additions & 1 deletion modules/core/src/classes/pose.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {Matrix4} from './matrix4';
import {Vector3} from './vector3';
import {Euler} from './euler';
Expand Down
5 changes: 4 additions & 1 deletion modules/core/src/classes/quaternion.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {NumericArray} from '@math.gl/types';
import {MathArray} from './base/math-array';
import {checkNumber, checkVector} from '../lib/validators';
Expand Down
5 changes: 4 additions & 1 deletion modules/core/src/classes/spherical-coordinates.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

// Adaptation of THREE.js Spherical class, under MIT license
import {NumericArray} from '@math.gl/types';
import {Vector3} from './vector3';
Expand Down
5 changes: 4 additions & 1 deletion modules/core/src/classes/vector2.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {Vector} from './base/vector';
import {config, isArray} from '../lib/common';
import {checkNumber} from '../lib/validators';
Expand Down
5 changes: 4 additions & 1 deletion modules/core/src/classes/vector3.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {NumericArray} from '@math.gl/types';
import {Vector} from './base/vector';
import {config, isArray} from '../lib/common';
Expand Down
4 changes: 3 additions & 1 deletion modules/core/src/classes/vector4.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

import {NumericArray} from '@math.gl/types';
/* eslint-disable camelcase */
Expand Down
4 changes: 4 additions & 0 deletions modules/core/src/gl-matrix/wip/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

// @eslint-disable
// @ts-nocheck

Expand Down
4 changes: 4 additions & 0 deletions modules/core/src/gl-matrix/wip/mat2.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

// @ts-nocheck
/* eslint-disable */

Expand Down
4 changes: 4 additions & 0 deletions modules/core/src/gl-matrix/wip/mat2d.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

// @ts-nocheck
/* eslint-disable */

Expand Down
4 changes: 4 additions & 0 deletions modules/core/src/gl-matrix/wip/quat2.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

// @ts-nocheck
/* eslint-disable */
import * as glMatrix from './common.js';
Expand Down
4 changes: 3 additions & 1 deletion modules/core/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// luma.gl, MIT license
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

// types
export type {TypedArray, TypedArrayConstructor, NumberArray, NumericArray} from '@math.gl/types';
Expand Down
4 changes: 4 additions & 0 deletions modules/core/src/lib/assert.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

export function assert(condition: unknown, message?: string): void {
if (!condition) {
throw new Error(`math.gl assertion ${message}`);
Expand Down
4 changes: 3 additions & 1 deletion modules/core/src/lib/common.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// math.gl, MIT license
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

import type {NumericArray} from '@math.gl/types';

Expand Down
4 changes: 4 additions & 0 deletions modules/core/src/lib/gl-matrix-extras.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

/* eslint-disable camelcase */
import {NumericArray} from '@math.gl/types';
// vec2 additions
Expand Down
4 changes: 4 additions & 0 deletions modules/core/src/lib/gl-matrix.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

type NumericArray =
| Int8Array
| Uint8Array
Expand Down
4 changes: 4 additions & 0 deletions modules/core/src/lib/math-utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

// NOTE: Added to make Cesium-derived test cases work
// TODO: Determine if/how to keep
export const EPSILON1 = 1e-1;
Expand Down
23 changes: 4 additions & 19 deletions modules/core/src/lib/validators.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

import {NumberArray} from '@math.gl/types';
import {config} from './common';

Expand Down
21 changes: 3 additions & 18 deletions modules/core/test/bench.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2015 - 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import javascriptBench from './lib/javascript.bench';
import commonBench from './lib/common.bench';
Expand Down
21 changes: 3 additions & 18 deletions modules/core/test/classes/classes.bench.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2015 - 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import {configure, Vector2, Vector3, Vector4, Matrix3, Matrix4} from '@math.gl/core';

Expand Down
4 changes: 4 additions & 0 deletions modules/core/test/classes/euler.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

import {Euler, Matrix4, Quaternion, Pose} from '@math.gl/core';
import test from 'tape-promise/tape';
import {tapeEquals} from 'test/utils/tape-assertions';
Expand Down
4 changes: 3 additions & 1 deletion modules/core/test/classes/matrix3.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

/* eslint-disable max-statements */
import {Matrix3, config} from '@math.gl/core';
Expand Down
21 changes: 3 additions & 18 deletions modules/core/test/classes/matrix4.bench.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2015 - 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import {configure, Vector4, Matrix4, mat4} from '@math.gl/core';

Expand Down
4 changes: 3 additions & 1 deletion modules/core/test/classes/matrix4.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

/* eslint-disable max-statements */
import {Matrix4, Vector3, config, configure} from '@math.gl/core';
Expand Down
4 changes: 4 additions & 0 deletions modules/core/test/classes/pose.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors

import test from 'tape-promise/tape';
import {Matrix4, Vector3, equals} from '@math.gl/core';
import {Euler, Pose} from '@math.gl/core';
Expand Down
21 changes: 3 additions & 18 deletions modules/core/test/classes/quaternion.spec.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the 'Software'), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

/* eslint-disable*/
import test from 'tape-promise/tape';
Expand Down
4 changes: 3 additions & 1 deletion modules/core/test/classes/spherical-coordinates.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 Uber Technologies, Inc.
// MIT License

/* eslint-disable max-statements, max-depth */
import test from 'tape-promise/tape';
Expand Down
21 changes: 3 additions & 18 deletions modules/core/test/classes/vector2.bench.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,7 @@
// math.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2015 - 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

import {Vector2} from '@math.gl/core';

Expand Down
Loading
Loading