@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.
64 lines (63 loc) • 3.12 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 2D Vector array operations.
* @module ArrayVector2D
*/
__exportStar(require("./add-2d.js"), exports);
__exportStar(require("./angle-between-2d.js"), exports);
__exportStar(require("./angle-x-2d.js"), exports);
__exportStar(require("./angle-y-2d.js"), exports);
__exportStar(require("./clamp-2d.js"), exports);
__exportStar(require("./clone-2d.js"), exports);
__exportStar(require("./cross-2d.js"), exports);
__exportStar(require("./distance-2d.js"), exports);
__exportStar(require("./distance-chebyshev-2d.js"), exports);
__exportStar(require("./distance-manhattan-2d.js"), exports);
__exportStar(require("./distance-minkowski-2d.js"), exports);
__exportStar(require("./distance-sq-2d.js"), exports);
__exportStar(require("./divide-2d.js"), exports);
__exportStar(require("./dot-2d.js"), exports);
__exportStar(require("./from-angle-x-2d.js"), exports);
__exportStar(require("./from-angle-y-2d.js"), exports);
__exportStar(require("./from-object-2d.js"), exports);
__exportStar(require("./from-polar-coords-2d.js"), exports);
__exportStar(require("./immutable-2d.js"), exports);
__exportStar(require("./is-equal-2d.js"), exports);
__exportStar(require("./is-equal-approx-2d.js"), exports);
__exportStar(require("./is-infinite-2d.js"), exports);
__exportStar(require("./is-nan-2d.js"), exports);
__exportStar(require("./is-opposite-2d.js"), exports);
__exportStar(require("./is-zero-2d.js"), exports);
__exportStar(require("./lerp-2d.js"), exports);
__exportStar(require("./limit-max-2d.js"), exports);
__exportStar(require("./limit-min-2d.js"), exports);
__exportStar(require("./look-at-2d.js"), exports);
__exportStar(require("./magnitude-2d.js"), exports);
__exportStar(require("./magnitude-sq-2d.js"), exports);
__exportStar(require("./multiply-2d.js"), exports);
__exportStar(require("./negate-2d.js"), exports);
__exportStar(require("./normalize-2d.js"), exports);
__exportStar(require("./one-2d.js"), exports);
__exportStar(require("./project-2d.js"), exports);
__exportStar(require("./random-2d.js"), exports);
__exportStar(require("./reflect-2d.js"), exports);
__exportStar(require("./rotate-2d.js"), exports);
__exportStar(require("./set-magnitude-2d.js"), exports);
__exportStar(require("./subtract-2d.js"), exports);
__exportStar(require("./types.js"), exports);
__exportStar(require("./zero-2d.js"), exports);