I'm not sure whether there might be more elegant ways to do this, but here is my try. I might improve it in the next days if I can manage the grass to look more convincing, but LaTeX does not like too many computations and if you try to force too many "sprouts", it will stop compiling with a memory size error.
Warning: Compiling might take a little while.
Update #1: Changed the looks and color of grass for better effect.
Update #2: Changed a few parameters and how the coordinates are calculated, also using only brighter green color to make the grass more visible.
Output

Code
\documentclass[tikz,margin=10pt]{standalone}
\usepackage[prefix=]{xcolor-material}
\usetikzlibrary{calc}
\tikzset{
grass/.style={thin, LightGreen!#1}
}
\newcommand\myangle{5}
\begin{document}
\begin{tikzpicture}[x=(330:1cm),y=(30:1cm),z=(90:1cm)]
\fill[LightGreen] (-1,-1,0) coordinate (c1) -- (-.5,1,0) coordinate (c2) -- (11,2,0) coordinate (c3) -- (11,-2,0) coordinate (c4) -- cycle ;
\foreach \x [count=\n] in {0,.005,...,1}{%
\foreach \multiplier in {1,...,12}{%
\pgfmathsetmacro\grad{random(80,90)}
\pgfmathsetmacro\varA{random(1,100)}
\pgfmathsetmacro\varB{random(1,100)}
\pgfmathsetmacro\varC{random(1,100)}
\pgfmathsetmacro\varD{random(1,100)}
\pgfmathsetmacro\ciuf{rand/10}
\coordinate (a\n) at ($(c1)!\x!(c4)$);
\coordinate (b\n) at ($(c2)!\x!(c3)$);
\path ($(a\n)!\varA/100!(b\n)$)
edge[grass=\grad, bend right=\myangle]++ (0,\ciuf pt,.1pt);
\path ($(a\n)!\varB/100!(b\n)$)
edge[grass=\grad, bend right=\myangle]++ (0,\ciuf pt,.1pt);
\path ($(a\n)!\varC/100!(b\n)$)
edge[grass=\grad, bend right=\myangle]++ (0,\ciuf pt,.1pt);
\path ($(a\n)!\varD/100!(b\n)$)
edge[grass=\grad, bend right=\myangle]++ (0,\ciuf pt,.1pt);
}
}
\end{tikzpicture}
\end{document}
tpplibrary to define the boundaries of the plane. – Nov 17 '20 at 02:07tpplibrary of TikZ? Do you think that I am able to put into green carpet the the chalk effect to reproduce the grass? :-( – Sebastiano Nov 21 '20 at 21:22tpplibrary, i.e. you can change some parameters to adjust the view in a systematic, controlled way. As for the the chalk effect: I do not know. This is just a random suggestion for something that might go in the right direction. – Nov 21 '20 at 21:53