I would like to draw a curvilinear grid/mesh like this (sorry for freehand drawing)

I thought the easiest (and most elegant) solution would be to apply a canvas transformation to a regular grid in TikZ.
However, I found only this example in the pgf/TikZ manual, which rotates a grid:
\documentclass{standalone}
\usepackage{pgf}
\begin{document}
\begin{pgfpicture}
\pgftransformrotate{10}
\pgfpathgrid[stepx=1mm,stepy=2mm]{\pgfpoint{0mm}{0mm}}{\pgfpoint{30mm}{30mm}}
\pgfusepath{stroke}
\end{pgfpicture}
\end{document}

Do these kind of transformations exist or should I use the recommended solution in this question on polar grids.