10 lines
343 B
TypeScript
10 lines
343 B
TypeScript
import { Vector2, Vector3, Matrix4 } from "three";
|
|
export declare class Matrix2 {
|
|
el: number[];
|
|
set(ix: number, iy: number, jx: number, jy: number): void;
|
|
applyVector(vec: Vector2 | Vector3): this;
|
|
fromMatrix4(mtx4: Matrix4): void;
|
|
setRotate(theta: number): this;
|
|
invert(): this;
|
|
}
|
|
//# sourceMappingURL=Matrix2.d.ts.map
|