SVG's elliptical arc curve path command takes 9 parameters: implicit current X and Y, rx
(x-radius), ry
(y-radius), x-axis-rotation
, large-arc-flag
, sweep-flag
, x
(endpoint-x), y
(endpoint-y). Lets ignore the two "flag" parameters that I believe to be unimportant for my question. Then 7 parameters remain.
Now my question is: is the ellipse overdetermined or not? I just believe that it is, because providing too small rx
and ry
and an endpoint which is too far the the current point will result in no solution. Thinking this way, only a subset of parameter space forms valid arches, hence the ellipse is overdetermined.
On the other hand, I'm not a geometry expert and I know that SVG is a well-thought-out standard, suggesting that I am wrong. Am I or not?
rx
andry
parameters are actually not absolute, but relative, they determine ratio. Sadly, I am unable to find this in the standard. – Tregoreg