I was trying in vain to use a rotated ellipse today and finally got it to work in an extremely hackish way. Trying to follow up, I turned to the manual (pg. 26):
You can also append an ellipse to the path using the ellipse operation. Instead of a single radius you can specify two of them, one for the x-direction and one for the y-direction, separated by and:
\tikz \draw (0,0) ellipse (20pt and 10pt);To draw an ellipse whose axes are not horizontal and vertical, but point in an arbitrary direction (a “turned ellipse” like) you can use transformations, which are explained later. The code for the little ellipse is
\tikz \draw[rotate=30] (0,0) ellipse (6pt and 3pt);, by the way.
Now, perhaps I just didn't understand transformations well enough, but I assumed that:
\draw[rotate=angle] (x,y) ellipse (width,height);
would produce an ellipse centered at (x,y), rotated by angle and with the eccentricity values of width and height. Instead, I seem to be getting an ellipse rotates about the origin if (x,y) is anything other than (0,0).
Here was my test:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw (0,0)--(10,0);
\foreach \x in {0,...,10}
\draw (\x,0)--(\x,-.1) node[anchor=north] {\x};
\draw (0,0)--(0,10);
\foreach \y in {0,...,10}
\draw (0,\y)--(-.1,\y) node[anchor=east] {\y};
\draw[help lines] (0,0) grid (10,10);
\draw (5,5) ellipse (10pt and 20pt);
\draw[rotate=45] (5,5) ellipse (10pt and 20pt);
\end{tikzpicture}
\end{document}
This produces the first ellipse at (5,5) as expected. The second, though, shows up rotated but at approx. (0,7). What am I missing? Why is rotate rotating it "about" something rather than just putting it at the coordinates and rotating it in place?


rotate aroundin the manual... it's exactly what I needed. Rotate around sounded intuitively like what was happening, whereas rotate sounded like it should just rotate in place. Thanks. – Hendy Mar 14 '12 at 02:00