@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
13 lines • 653 B
TypeScript
/**
* Orthogonal distance of a point to a plane, the distance is positive when the point lies above the plane and negative when the point is below
* @param {number} x Reference point, x coordinate
* @param {number} y Reference point, y coordinate
* @param {number} z Reference point, z coordinate
* @param {number} normal_x
* @param {number} normal_y
* @param {number} normal_z
* @param {number} plane_offset
* @returns {number}
*/
export function v3_distance_above_plane(x: number, y: number, z: number, normal_x: number, normal_y: number, normal_z: number, plane_offset: number): number;
//# sourceMappingURL=v3_distance_above_plane.d.ts.map