@js-basics/vector
Version:
A 3D Vector lib including arithmetic operator overloading (+ - * / % **).
19 lines (18 loc) • 417 B
TypeScript
export class IMat3 extends AMat3 {
}
declare class AMat3 {
constructor(...columns: any[]);
set 0(_: any);
get 0(): any;
set 1(_: any);
get 1(): any;
set 2(_: any);
get 2(): any;
multiplyMat(other: any): any;
multiplyVec(other: any): any;
multiply(other: any): any;
[Symbol.iterator](): ArrayIterator<any>;
[AXES]: any[];
}
declare const AXES: unique symbol;
export {};