UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

13 lines 656 B
/** * Compute the circumcenter (center[3]) and radius squared (method return value) of a tetrahedron defined by the four points x1, x2, x3, and x4. * * @see https://github.com/Kitware/VTK/blob/ac3fd8005bce7b3da4423c305f61ffd9df9695ef/Common/DataModel/vtkTetra.cxx * @param {number[]} result [center_x, center_y, center_z, radius_squared] * @param {number[]} points * @param {number} a * @param {number} b * @param {number} c * @param {number} d */ export function tetrahedron_compute_circumsphere(result: number[], points: number[], a: number, b: number, c: number, d: number): void; //# sourceMappingURL=tetrahedron_compute_circumsphere.d.ts.map