powered by
Return an ellipse from the coefficients of its implicit equation.
EllipseFromEquation(A, B, C, D, E, F)
An Ellipse object.
Ellipse
the coefficients of the equation
The implicit equation of the ellipse is Ax² + Bxy + Cy² + Dx + Ey + F = 0. This function returns the ellipse given A, B, C, D, E and F.
Ax² + Bxy + Cy² + Dx + Ey + F = 0
ell <- Ellipse$new(c(2,3), 5, 4, 30) cf <- ell$equation() ell2 <- EllipseFromEquation(cf[1], cf[2], cf[3], cf[4], cf[5], cf[6]) ell$isEqual(ell2)
Run the code above in your browser using DataLab