CADViewComponent/dist/Matrix2.d.ts

8 lines
244 B
TypeScript
Raw Normal View History

import { Vector2, Vector3 } from "three";
export declare class Matrix2 {
private el;
set(n11: number, n12: number, n21: number, n22: number): this;
applyVector(vec: Vector2 | Vector3): this;
setRotate(theta: number): Matrix2;
}