webcad-api/types/Geometry/Matrix2.d.ts

10 lines
343 B
TypeScript
Raw Normal View History

2023-05-08 10:53:13 +08:00
import { Matrix4, Vector2, Vector3 } from "three";
2020-09-24 11:04:12 +08:00
export declare class Matrix2 {
el: number[];
2023-05-08 10:53:13 +08:00
set(ix: number, iy: number, jx: number, jy: number): this;
2020-09-24 11:04:12 +08:00
applyVector(vec: Vector2 | Vector3): this;
fromMatrix4(mtx4: Matrix4): void;
setRotate(theta: number): this;
invert(): this;
}
//# sourceMappingURL=Matrix2.d.ts.map