diff options
Diffstat (limited to 'Master/texmf-dist/doc/generic/pstricks/pst-news12.tex')
-rw-r--r-- | Master/texmf-dist/doc/generic/pstricks/pst-news12.tex | 50 |
1 files changed, 48 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/generic/pstricks/pst-news12.tex b/Master/texmf-dist/doc/generic/pstricks/pst-news12.tex index 384bca12e4e..c998b38870a 100644 --- a/Master/texmf-dist/doc/generic/pstricks/pst-news12.tex +++ b/Master/texmf-dist/doc/generic/pstricks/pst-news12.tex @@ -56,6 +56,19 @@ supports \PS\ code in the document. \section{\texttt{pstricks.tex} (\pstricksFV -- \pstricksFD)} %-------------------------------------------------------------------------------------- + +\subsection{\nxLcs{psellipticarc}} +There was a bug with the star version of \Lcs{psellipticarc}, which filled the path in +the same way as \Lcs{psellipticwedge*} does. It is now fixed: + +\begin{LTXexample}[pos=r] +\begin{pspicture}[showgrid](4,4) +\psellipticarc*(2,0)(2,4){0}{130} +\psdot(2,0) +\end{pspicture} +\end{LTXexample} + + \subsection{Grid} The optional argument \Lkeyval{showgrid} can have the values \Lkeyval{bottom}, @@ -66,8 +79,6 @@ The optional argument \Lkeyval{showgrid} can have the values \Lkeyval{bottom}, at the end of the \Lenv{pspitcure} environment. - - \subsection{Symbol line} The optional argument \Lkeyword{symbol} for a linestyle can now be set with a negative \Lkeyword{symbolstep} for a computed width of the steps: @@ -106,6 +117,41 @@ width if the \Lkeyword{symbolStep} is set by a negative number without a unit. \end{LTXexample} +\subsection{Fill style \texttt{eohlines} and \texttt{eovlines}} +These fill stykes uses the PS function \Lps{eoclip} instead of \Lps{clip}. + +\begin{LTXexample}[pos=t] +\begin{pspicture}[showgrid](6,6) + \pscustom[fillstyle=eovlines,fillcolor=green]{ + \pscircle(3,3){3} + \psline[liftpen=2](1,2)(5,2)(3,5)(1,2) + } +\end{pspicture}\quad +\begin{pspicture}[showgrid](6,6) + \pscustom[fillstyle=eovlines*,fillcolor=blue!50]{ + \pscircle(3,3){3} + \psline[liftpen=2](1,2)(5,2)(3,5)(1,2)} +\end{pspicture} +\end{LTXexample} + + + +\subsection{Fill style \texttt{penroseA}} + +The valid optional arguments are \texttt{penroseA}, +\texttt{hatchcolor}, \texttt{dartcolor}, and \texttt{kitecolor} + +\begin{LTXexample}[pos=t,wide] +\begin{pspicture}(3,3) +\psframe[fillstyle=penroseA](3,3) +\end{pspicture} \qquad +\begin{pspicture}(3,3) +\psframe[fillstyle=penroseA,psscale=0.5,hatchcolor=white](3,3) +\end{pspicture} \qquad +\begin{pspicture}(3,3) +\psccurve[fillstyle=penroseA,kitecolor=yellow,dartcolor=blue!30](0,1.5)(1.5,3)(3,1.5)(1.5,0) +\end{pspicture} +\end{LTXexample} |