matrix-engine-wgpu 1.2.7 → 1.2.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/package.json +1 -1
- package/src/engine/engine.js +1 -2
package/package.json
CHANGED
package/src/engine/engine.js
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
// Note: The code in this file does not use the 'dst' output parameter of functions in the
|
|
2
2
|
// 'wgpu-matrix' library, so produces many temporary vectors and matrices.
|
|
3
3
|
// This is intentional, as this sample prefers readability over performance.
|
|
4
|
-
import {
|
|
5
|
-
import {LOG_INFO} from './utils';
|
|
4
|
+
import { mat4, vec3 } from 'wgpu-matrix';
|
|
6
5
|
// import Input from './input';
|
|
7
6
|
|
|
8
7
|
// // Common interface for camera implementations
|