Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
parameterized form of rotated ellipse?
Is it possible to calculate the parameterized form of a rotated ellipse from its equation?
e.g., given Ax^2 + By^2 + Cxy = 1, define the ellipse as x(t), y(t)
1 Answer
- Scythian1950Lv 71 decade agoFavorite Answer
Use a 2D rotation matrix to come up with, for example (many variations possible):
{ Cos(a)Sin(t) - kSin(a)Cos(t), Sin(a)Sin(t) + kCos(a)Cos(t) }
where t is the parameter variable, k is the ratio of the ellipse axes, and a is the angle of rotation. You can easily convert the trigonometric expressions into algebraic form, since a and t are merely parameters.
Edit: An example of an algebraic explicit function of the form f(x,y) = 0 that rotates as a (not an angle but a generalized parameter) changes would be:
A'x^2 + B'y^2 + C'xy + D' = 0
where
A' = A^2 - 2A^2 a^2 + 4B^2 a^2 + A^2 a^4
B' = B^2 + 4A^2 a^2 - 2B^2 a^2 + B^2 a^4
C' = -4A^2 a + 4B^2 a + 4A^2 a^3 - 4B^2 a^3
D' = -A^2 B^2 - 2A^2 B^2 a^2 - A^2 B^2 a^4
Source(s): http://en.wikipedia.org/wiki/Rotation_matrix