How can I change the default coordinate system of TikZ, so the Y coordinates go downwards, instead of upwards. This is because in the picture I'm trying to draw it is more natural to reference points this way.
I was trying to use negative values in the declaration, but some drawing commands don't really like it, like the grid, where horizontal lines simply don't get drawn this way:
\begin{tikzpicture}[x=1cm,y=-1cm]
\draw (0, 0) grid (7, 7);
\end{tikzpicture}
Result:


yscale=1however seems to have no bad side effects (at least for the cases I need) – SztupY Nov 28 '12 at 22:21y=-1cmbut thegrid:) So it's an unlucky start I would say :) – percusse Nov 28 '12 at 22:24