How does one can transform tikzpicture according some shape, which is given by an equation?
\documentclass[tikz]{standalone}
\usepgfmodule{nonlineartransformations}
\makeatletter
\def\mytransformation{%
% Code for transformation x = const lines to parabolic type
}
\makeatother
\begin{document}
\begin{tikzpicture}
\begin{scope}%Inside the scope transformation is active
\pgftransformnonlinear{\mytransformation}
\draw (0,0) grid [step=1] (10,10);
\draw[thick, domain=0:8.95, smooth,variable=\x,blue] plot ({\x},{8 - 0.1*\x*\x});
\end{scope}
% Here back to normal
\end{tikzpicture}
\end{document}
The main purpose, is to deform picture like shown in video (1:01) (right picture)
