@thi.ng/matrices
Version:
Matrix & quaternion operations for 2D/3D geometry processing
15 lines • 427 B
TypeScript
import type { Mat } from "./api.js";
/**
* Creates a 4x4 matrix orthographic projection matrix and writes result
* to `out`.
*
* @param out -
* @param left -
* @param right -
* @param bottom -
* @param top -
* @param near -
* @param far -
*/
export declare const ortho: (out: Mat | null, left: number, right: number, bottom: number, top: number, near: number, far: number) => Mat;
//# sourceMappingURL=ortho.d.ts.map