/** * Returns a double-double precision implicit form of the given quadratic * bezier curve and a coefficientwise error bound. * * Returned coefficients are subscripted to match their monomial's variables, * e.g. `vₓᵧ` is the coefficient of the monomial `vₓᵧxy` * * * the implicit form is given by: `vₓₓx² +vₓᵧxy + vᵧᵧy² + vₓx + vᵧy + v = 0` * * intermediate calculations are done in double-double precision and this is * reflected in the error bound * * the error bound returned first needs to be scaled by `γγ3 === (3*u*u) / (1 - 3*u*u) === 3.697785493223493e-32`, * where `u === Number.EPSILON / 2` before use * * adapted from [Indrek Mandre](http://www.mare.ee/indrek/misc/2d.pdf) * * @param ps a quadratic bezier curve given as an array of its control points, * e.g. `[[1,2],[3,4],[5,7]]` * * @doc mdx */ declare function getImplicitForm2DdWithRunningError(ps: number[][]): { coeffs: { vₓₓ: number[]; vₓᵧ: number[]; vᵧᵧ: number[]; vₓ: number[]; vᵧ: number[]; v: number[]; }; errorBound: { vₓₓ_: number; vₓᵧ_: number; vᵧᵧ_: number; vₓ_: number; vᵧ_: number; v_: number; }; }; export { getImplicitForm2DdWithRunningError };