2022-05-26 11:06:27 +08:00
|
|
|
import { Matrix4, Vector2, Vector3 } from "three";
|
2021-01-28 10:17:21 +08:00
|
|
|
export declare class Matrix2 {
|
|
|
|
el: number[];
|
2022-05-26 11:06:27 +08:00
|
|
|
set(ix: number, iy: number, jx: number, jy: number): this;
|
2021-01-28 10:17:21 +08:00
|
|
|
applyVector(vec: Vector2 | Vector3): this;
|
|
|
|
fromMatrix4(mtx4: Matrix4): void;
|
|
|
|
setRotate(theta: number): this;
|
|
|
|
invert(): this;
|
|
|
|
}
|
|
|
|
//# sourceMappingURL=Matrix2.d.ts.map
|