mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
82 lines
1.6 KiB
TypeScript
82 lines
1.6 KiB
TypeScript
// @allowJs: true
|
|
// @checkJs: true
|
|
// @target: es5
|
|
// @outDir: ./out
|
|
// @declaration: true
|
|
// @filename: source.js
|
|
|
|
/**
|
|
* @param {number} len
|
|
*/
|
|
export function Vec(len) {
|
|
/**
|
|
* @type {number[]}
|
|
*/
|
|
this.storage = new Array(len);
|
|
}
|
|
|
|
Vec.prototype = {
|
|
/**
|
|
* @param {Vec} other
|
|
*/
|
|
dot(other) {
|
|
if (other.storage.length !== this.storage.length) {
|
|
throw new Error(`Dot product only applicable for vectors of equal length`);
|
|
}
|
|
let sum = 0;
|
|
for (let i = 0; i < this.storage.length; i++) {
|
|
sum += (this.storage[i] * other.storage[i]);
|
|
}
|
|
return sum;
|
|
},
|
|
magnitude() {
|
|
let sum = 0;
|
|
for (let i = 0; i < this.storage.length; i++) {
|
|
sum += (this.storage[i] ** 2);
|
|
}
|
|
return Math.sqrt(sum);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {number} x
|
|
* @param {number} y
|
|
*/
|
|
export function Point2D(x, y) {
|
|
if (!(this instanceof Point2D)) {
|
|
return new Point2D(x, y);
|
|
}
|
|
Vec.call(this, 2);
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
|
|
Point2D.prototype = {
|
|
__proto__: Vec,
|
|
get x() {
|
|
return this.storage[0];
|
|
},
|
|
/**
|
|
* @param {number} x
|
|
*/
|
|
set x(x) {
|
|
this.storage[0] = x;
|
|
},
|
|
get y() {
|
|
return this.storage[1];
|
|
},
|
|
/**
|
|
* @param {number} y
|
|
*/
|
|
set y(y) {
|
|
this.storage[1] = y;
|
|
}
|
|
};
|
|
|
|
// @filename: referencer.js
|
|
|
|
import {Point2D} from "./source";
|
|
|
|
export const origin = new Point2D(0, 0);
|
|
// export const res = Point2D(2, 3).dot(origin); // TODO: when __proto__ works, validate this
|