Step1. 代码不要包含一大堆与原始问题无关的内容。
Step2. 可以考虑基于angles库绘制代码,简化并美化角度的标注
Step3. 基于patterns库实现阴影的绘制
\documentclass[tikz,border=5pt]{standalone}
\usepackage{amsmath}
\usepackage{fourier}
\usetikzlibrary{arrows.meta,angles,quotes,patterns,bending}
\begin{document}
\begin{tikzpicture}
\draw[-Stealth,thick] (-2,0)--(4,0);
\draw[-Stealth,thick] (0,-3)--(0,3) node[above]{$(z)$};
\draw (3,-3) -- coordinate[pos=.1] (A) (0,0) node[label=below left:$O$] (O) {} -- coordinate[pos=.9] (B) (2.5,3);
\draw[pattern=north west lines,pattern color=magenta!50] (A) -- (0,0) -- (B) -- (A) -- cycle;
\pic["$\pi/\alpha$", draw=teal, text=teal, fill=white, -Stealth, angle eccentricity=1.75] {angle = A--O--B};
\end{tikzpicture}
\end{document}




















问 图中阴影部分要怎么画?