使用 tikz 对风力涡轮机叶片进行颜色着色

使用 tikz 对风力涡轮机叶片进行颜色着色

我对 tikz 还很陌生,我的目标是绘制一个通用的风力涡轮机叶片,以便我可以用从绿色(左)到红色(右)的颜色填充它,就像色彩图一样,我希望你能明白我的意思。

以我目前的技能,我可以逐线绘制刀片,但我想学习如何以“更智能”的方式进行绘制,以便我可以轻松地为线条内的图形着色。

通用涡轮叶片

答案1

使用 tikz\shade命令:

\documentclass{standalone}

\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
\shadedraw[left color=green,right color=red] (0.6315,3.6977) .. controls (0.7398,3.5492) and (0.7503,3.3778) .. (0.6550,3.3151) .. controls (0.5597,3.2523) and (0.3948,3.3219) .. (0.2865,3.4705) .. controls (0.1783,3.6190) and (0.1678,3.7903) .. (0.2631,3.8531) .. controls (0.3583,3.9158) and (0.5233,3.8463) .. (0.6315,3.6977) -- cycle
 (0.2221,3.8172) .. controls (0.2221,3.8172) and (0.6084,4.1358) .. (0.8203,4.2755) .. controls (0.8203,4.2755) and (1.1664,5.1021) .. (1.2321,5.1457) .. controls (1.3934,5.2527) and (5.8407,7.6417) .. (6.7093,8.1135) .. controls (6.7482,8.1346) and (6.8111,8.1615) .. (6.8414,8.1290) .. controls (6.8791,8.0885) and (6.8541,7.9998) .. (6.8103,7.9659) .. controls (5.0401,6.5957) and (0.6494,3.3122) .. (0.6494,3.3122);
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容