如何调整贝塞尔曲线的箭头尖端?

如何调整贝塞尔曲线的箭头尖端?

我想调整左侧贝塞尔曲线的箭头尖端,使其看起来像右侧的箭头尖端。

由于没有 \ncbezier\pcbezier可用,我无法用它nodesep来调整它。arcsep也不起作用。

使用\psbezier{->}([offset=4pt]R)([offset=-4pt]CR)([offset=-4pt]CL)([offset=4pt]L)并不完美,因为它会产生一条不同的新贝塞尔曲线。在右图中,您能看到第一条创建的贝塞尔曲线所包围的填充区域并没有被第二条曲线完全包围吗?

在此处输入图片描述

\documentclass[border=12pt]{standalone}
\usepackage{pst-node}
\addtopsstyle{gridstyle}{griddots=0,gridwidth=0.4pt,subgriddiv=10,subgridwidth=0.1pt}

\def\Common{%
    % define nodes  
    \pnode(0,0){L}
    \pnode(1;45){T}
    \pnode(!2 sqrt 0){R}
    \pnode[-0.5,0.75](T){CL}
    \pnode[0.5,0.75](T){CR}
    % draw a bezier curve
    \pscustom[fillstyle=solid,fillcolor=red,linestyle=none]{\psbezier(R)(CR)(CL)(L)\closepath}
    % draw dots
    \pscircle(L){4pt}
    \pscircle(R){4pt}
}

\begin{document}
\begin{pspicture}[showgrid=false](1.45,1.25)
    \Common
    \psbezier{->}(R)(CR)(CL)(L)
\end{pspicture}
\qquad
\begin{pspicture}[showgrid=false](1.45,1.25)
    \Common
    \psbezier{->}([offset=4pt]R)([offset=-4pt]CR)([offset=-4pt]CL)([offset=4pt]L)
\end{pspicture}
\end{document}

那么如何调整呢?更普遍的问题是:是否可以将箭头放在路径上的任何点(就像在 TikZ 中一样)?

答案1

赫伯特想出了一个解决方案他的主页

相关内容