如何绘制扭曲的 3D 箭头?

如何绘制扭曲的 3D 箭头?

有人知道我该如何画一个本身扭曲了 90 度的 3D 箭头吗?我需要这样的箭头来显示偏振光在液晶中是如何扭曲的。

我想将该箭头包含在我的 tikz 图形中。

编辑:这就是我想要的箭头的样子。箭头的尖端和末端必须垂直。

在此处输入图片描述

答案1

只是玩玩而已,并不知道自己在做什么......

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\filldraw[fill=orange,line width=1pt] (0,0) -- (1,1) -- (1.05,.7) -- 
  (7.5,0) -- (1.3,-.7) -- (1.35,-1) -- cycle;
\filldraw[fill=orange,line width=1pt] (12.1,-.7) -- (11.85,.7) --
  (4.7,.4) -- cycle;
\filldraw[fill=orange!50,line width=1pt] (0.025,0.045) -- (.1,.3) -- (1.08,1.3) -- 
  (1,1.0) -- cycle;
\filldraw[fill=orange!50,line width=1pt] (1.1,1.3) -- (1,1) -- 
  (1.05,.72) -- (1.15,1) -- cycle;
\filldraw[fill=orange!50,line width=1pt] (1.05,.7) -- (1.15,1) -- 
   (12.1,-.7) -- (12,-1.) -- cycle;
\filldraw[fill=orange!50,line width=1pt] (1.3,-.7) -- (1.36,-.98) -- 
  (1.45,-.7) -- cycle;
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容