Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

18
node_modules/three-stdlib/_polyfill/Data3DTexture.cjs generated vendored Normal file
View File

@@ -0,0 +1,18 @@
"use strict";
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const THREE = require("three");
class Data3DTexture extends THREE.Texture {
constructor(data = null, width = 1, height = 1, depth = 1) {
super(null);
this.isData3DTexture = true;
this.image = { data, width, height, depth };
this.magFilter = THREE.NearestFilter;
this.minFilter = THREE.NearestFilter;
this.wrapR = THREE.ClampToEdgeWrapping;
this.generateMipmaps = false;
this.flipY = false;
this.unpackAlignment = 1;
}
}
exports.Data3DTexture = Data3DTexture;
//# sourceMappingURL=Data3DTexture.cjs.map