我想画一个蝙蝠侠的标志。由于它关于垂直线对称,因此先定义右侧部分(或左侧部分)然后反射它以获取另一部分应该更方便。您必须考虑的重要一点是,徽标必须由可用作剪切路径的封闭曲线构成。
根据pst-news13
第 4 页,我们\reversepath
可以使用它来构建反向坐标中的曲线。
不幸的是,我没能使用\reversepath
如下面的代码所示。
\documentclass[pstricks,border=6pt]{standalone}
\SpecialCoor
\pstVerb
{
/theta 72 def
/Major 6.0 def
/Minor 3.3 def
% b a t p2c ---> x y
% where b (semi-minor), a (semi-major), t (theta)
/p2c {dup 3 1 roll cos mul 3 1 roll sin mul} bind def
}
\def\RightPart
{
\psline(0,2.7)(0.5,2.7)(1,3.25)
\psbezier(1.2,1.3)(1.3,1.0)(2.0,1.0)
\psbezier(3.0,1.0)(3.0,2.2)(!Minor Major theta p2c)
\psellipticarcn(0,0)(!Major Minor){(!Minor Major theta p2c)}{(!Minor Major theta neg p2c)}
\psbezier(4,-2)(4,0)(2.2,-1.8)
\psbezier(1.5,-1)(1,-1)(0,-3.2)
}
\def\LeftPart
{
\scale{-1 1}
\reversepath
\psbezier(1.5,-1)(1,-1)(0,-3.2)
\psbezier(4,-2)(4,0)(2.2,-1.8)
\psellipticarcn(0,0)(!Major Minor){(!Minor Major theta p2c)}{(!Minor Major theta neg p2c)}
\psbezier(3.0,1.0)(3.0,2.2)(!Minor Major theta p2c)
\psbezier(1.2,1.3)(1.3,1.0)(2.0,1.0)
\psline(0,2.7)(0.5,2.7)(1,3.25)
\closepath
}
\begin{document}
\begin{pspicture}[showgrid=false](-7.85,-4.85)(7.85,4.85)
\pscustom[dimen=middle]{\RightPart}
\end{pspicture}
\begin{pspicture}[showgrid=false](-7.85,-4.85)(7.85,4.85)
\pscustom[dimen=middle]{\LeftPart}
\end{pspicture}
\begin{pspicture}[showgrid=false](-7.85,-4.85)(7.85,4.85)
\pscustom[dimen=middle,fillstyle=solid,fillcolor=red]{\RightPart\LeftPart}
\end{pspicture}
\end{document}
\reversepath
所以我的问题是在这种情况下如何使用?
答案1
在花了很多时间去弄清楚它是如何\reversepath
工作的之后,我们现在已经了解了它的行为。
\reversepath
影响前一个路径,而不是后一个路径(大多数人可能都这么认为)。其行为与为 定义的其他宏(例如\scale
、\translate
等)不一致pscustom
。这是 PSTricks 中许多其他不一致之处之一。但它仍然很有趣!
\documentclass[pstricks,border=12pt]{standalone}
% b a t p2c ---> x y
% where b (semi-minor), a (semi-major), t (theta)
\pstVerb{/p2c {dup 3 1 roll cos mul 3 1 roll sin mul} bind def}
\def\RightPart
{
\psline(0.5,2.7)(1,3.25)
\psbezier(1.2,1.3)(1.3,1.0)(2.0,1.0)
\psbezier(3.0,1.0)(3.0,2.2)(!3.3 6.0 72 p2c)
\psellipticarcn(6.0,3.3){(!3.3 6.0 72 p2c)}{(!3.3 6.0 72 neg p2c)}
\psbezier(4,-2)(4,0)(2.2,-1.8)
\psbezier(1.5,-1)(1,-1)(0,-3.2)
}
\begin{document}
\begin{pspicture}[showgrid](-7,-4)(7,4)
\pscustom[dimen=middle,fillstyle=solid,fillcolor=orange,linewidth=6pt]
{
\RightPart
\reversepath
\scale{-1 1}
\RightPart
\closepath
}
\end{pspicture}
\end{document}