UNPKG

@thi.ng/matrices

Version:

Matrix & quaternion operations for 2D/3D geometry processing

15 lines 431 B
import type { MatOpMM, MultiMatOpMM } from "./api.js"; /** * Componentwise matrix division. If `out` is not given, writes result * in `a`. Both input matrices MUST be of same size. * * out = a / b * * @param out - * @param a - * @param b - */ export declare const div: MultiMatOpMM; export declare const div22: MatOpMM; export declare const div23: MatOpMM, div33: MatOpMM, div44: MatOpMM; //# sourceMappingURL=div.d.ts.map