@thi.ng/matrices
Version:
Matrix & quaternion operations for 2D/3D geometry processing
12 lines • 391 B
TypeScript
export type AxisOrder = "xyz" | "yxz" | "xzy" | "zxy" | "yzx" | "zyx";
/**
* Constructs a quaternion from given rotation angles in specified
* `order`.
*
* @param order -
* @param a -
* @param b -
* @param c -
*/
export declare const quatFromEuler: (order: AxisOrder, a: number, b: number, c: number) => import("@thi.ng/vectors").Vec<number>;
//# sourceMappingURL=quat-euler.d.ts.map