@fimbul-works/vec
Version:
A comprehensive TypeScript vector math library providing 2D, 3D, and 4D vector operations with a focus on performance and type safety.
61 lines (60 loc) • 2.95 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Documentation for functional 4D Vector array operations.
* @module ArrayVector4D
*/
__exportStar(require("./add-4d.js"), exports);
__exportStar(require("./angle-between-4d.js"), exports);
__exportStar(require("./angle-w-4d.js"), exports);
__exportStar(require("./angle-x-4d.js"), exports);
__exportStar(require("./angle-y-4d.js"), exports);
__exportStar(require("./angle-z-4d.js"), exports);
__exportStar(require("./clamp-4d.js"), exports);
__exportStar(require("./clone-4d.js"), exports);
__exportStar(require("./distance-4d.js"), exports);
__exportStar(require("./distance-chebyshev-4d.js"), exports);
__exportStar(require("./distance-manhattan-4d.js"), exports);
__exportStar(require("./distance-minkowski-4d.js"), exports);
__exportStar(require("./distance-sq-4d.js"), exports);
__exportStar(require("./divide-4d.js"), exports);
__exportStar(require("./dot-4d.js"), exports);
__exportStar(require("./from-object-4d.js"), exports);
__exportStar(require("./immutable-4d.js"), exports);
__exportStar(require("./is-equal-4d.js"), exports);
__exportStar(require("./is-equal-approx-4d.js"), exports);
__exportStar(require("./is-infinite-4d.js"), exports);
__exportStar(require("./is-nan-4d.js"), exports);
__exportStar(require("./is-opposite-4d.js"), exports);
__exportStar(require("./is-zero-4d.js"), exports);
__exportStar(require("./lerp-4d.js"), exports);
__exportStar(require("./limit-max-4d.js"), exports);
__exportStar(require("./limit-min-4d.js"), exports);
__exportStar(require("./look-at-4d.js"), exports);
__exportStar(require("./magnitude-4d.js"), exports);
__exportStar(require("./magnitude-sq-4d.js"), exports);
__exportStar(require("./multiply-4d.js"), exports);
__exportStar(require("./negate-4d.js"), exports);
__exportStar(require("./normalize-4d.js"), exports);
__exportStar(require("./one-4d.js"), exports);
__exportStar(require("./project-4d.js"), exports);
__exportStar(require("./random-4d.js"), exports);
__exportStar(require("./reflect-4d.js"), exports);
__exportStar(require("./set-magnitude-4d.js"), exports);
__exportStar(require("./subtract-4d.js"), exports);
__exportStar(require("./types.js"), exports);
__exportStar(require("./zero-4d.js"), exports);