@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
16 lines • 685 B
TypeScript
/**
* @see https://stackoverflow.com/a/57824137
* @param {number[]} destination
* @param {number} destination_offset
* @param {number} a_normal_x
* @param {number} a_normal_y
* @param {number} a_normal_z
* @param {number} a_constant
* @param {number} b_normal_x
* @param {number} b_normal_y
* @param {number} b_normal_z
* @param {number} b_constant
* @param {number} t
*/
export function plane3_slerp(destination: number[], destination_offset: number, a_normal_x: number, a_normal_y: number, a_normal_z: number, a_constant: number, b_normal_x: number, b_normal_y: number, b_normal_z: number, b_constant: number, t: number): void;
//# sourceMappingURL=plane3_slerp.d.ts.map