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

View File

@@ -0,0 +1 @@
export * from "../../dist/declarations/src/vector3";

View File

@@ -0,0 +1,20 @@
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var vector3_dist_maathVector3 = require('../../dist/vector3-5e723d1a.cjs.dev.js');
exports.add = vector3_dist_maathVector3.add;
exports.addValue = vector3_dist_maathVector3.addValue;
exports.cross = vector3_dist_maathVector3.cross;
exports.distance = vector3_dist_maathVector3.distance;
exports.dot = vector3_dist_maathVector3.dot;
exports.length = vector3_dist_maathVector3.length;
exports.lengthSqr = vector3_dist_maathVector3.lengthSqr;
exports.one = vector3_dist_maathVector3.one;
exports.scale = vector3_dist_maathVector3.scale;
exports.sub = vector3_dist_maathVector3.sub;
exports.subValue = vector3_dist_maathVector3.subValue;
exports.zero = vector3_dist_maathVector3.zero;

7
node_modules/maath/vector3/dist/maath-vector3.cjs.js generated vendored Normal file
View File

@@ -0,0 +1,7 @@
'use strict';
if (process.env.NODE_ENV === "production") {
module.exports = require("./maath-vector3.cjs.prod.js");
} else {
module.exports = require("./maath-vector3.cjs.dev.js");
}

View File

@@ -0,0 +1,20 @@
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var vector3_dist_maathVector3 = require('../../dist/vector3-4bbdb053.cjs.prod.js');
exports.add = vector3_dist_maathVector3.add;
exports.addValue = vector3_dist_maathVector3.addValue;
exports.cross = vector3_dist_maathVector3.cross;
exports.distance = vector3_dist_maathVector3.distance;
exports.dot = vector3_dist_maathVector3.dot;
exports.length = vector3_dist_maathVector3.length;
exports.lengthSqr = vector3_dist_maathVector3.lengthSqr;
exports.one = vector3_dist_maathVector3.one;
exports.scale = vector3_dist_maathVector3.scale;
exports.sub = vector3_dist_maathVector3.sub;
exports.subValue = vector3_dist_maathVector3.subValue;
exports.zero = vector3_dist_maathVector3.zero;

1
node_modules/maath/vector3/dist/maath-vector3.esm.js generated vendored Normal file
View File

@@ -0,0 +1 @@
export { a as add, b as addValue, f as cross, h as distance, e as dot, g as length, l as lengthSqr, o as one, d as scale, s as sub, c as subValue, z as zero } from '../../dist/vector3-0a088b7f.esm.js';