Possible Duplicate:
Moving tiles of the pattern in TikZ
I have a rotated rectangle filled with a pattern, and I would like to also rotate the pattern by the same amount.
In this MWE, the second node is a rotated rectangle, but its north east lines pattern is parallel to the first node's pattern.

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{patterns}
\begin{document}
\begin{tikzpicture}
\node[draw, minimum size=0.5cm, rectangle, pattern=north east lines] at (0,0) {};
\node[draw, minimum size=0.5cm, rectangle, pattern=north east lines, rotate=30] at (1cm,0) {};
\end{tikzpicture}
\end{document}
transform canvascan not be used. – nickpapior Sep 04 '12 at 11:18transform canvasto work (despite causing all sorts of other problems). I guess I should manually draw the pattern then. You can make this an answer, I'll accept it. – Suzanne Soy Sep 04 '12 at 11:23