我想将下面的图片(它是引擎的横截面)转换为TikZ代码:
答案 0 :(得分:0)
如何抽油(阴影区域)?
一种方法可能是使用PGF Manual第730页所述的pattern=north east lines
库中的patterns
:
\documentclass[tikz,border=5mm]{standalone}
\usetikzlibrary{patterns}
\begin{document}
\begin{tikzpicture}
\fill [pattern=north east lines] (0,6) -- (0,0) -- (10,0) -- (10,6);
\draw (0,10) -- (0,0) -- (10,0) -- (10,10);
\end{tikzpicture}
\end{document}