summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/generic')
-rw-r--r--Master/texmf-dist/doc/generic/pstricks/Changes.dvips2
-rw-r--r--Master/texmf-dist/doc/generic/pstricks/Changes.generic3
-rw-r--r--Master/texmf-dist/doc/generic/pstricks/pst-news12.pdfbin78934 -> 97766 bytes
-rw-r--r--Master/texmf-dist/doc/generic/pstricks/pst-news12.tex50
4 files changed, 53 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/generic/pstricks/Changes.dvips b/Master/texmf-dist/doc/generic/pstricks/Changes.dvips
index 01afcb9a69e..6114f142810 100644
--- a/Master/texmf-dist/doc/generic/pstricks/Changes.dvips
+++ b/Master/texmf-dist/doc/generic/pstricks/Changes.dvips
@@ -1,4 +1,6 @@
---- pstricks.pro
+1.14 2012-08-13 - add eoclip for linefill and dotfill
+1.13 2012-07-01 - add PenroseFillA
1.12 2012-02-12 - add option tickAngle and symbolLinewidth
1.11 2012-02-09 - fix bug
1.10 2012-02-09 - add option for curveticks with option symbol
diff --git a/Master/texmf-dist/doc/generic/pstricks/Changes.generic b/Master/texmf-dist/doc/generic/pstricks/Changes.generic
index ea993bfe454..feef27cf870 100644
--- a/Master/texmf-dist/doc/generic/pstricks/Changes.generic
+++ b/Master/texmf-dist/doc/generic/pstricks/Changes.generic
@@ -1,4 +1,7 @@
pstricks.tex --------
+2.30 2012-08-13 - fixed bug with the star version of \psellipticarc
+ - added fillstyle options eovlines, eohlines,
+ eovlines*, and eohlines*
2.29 2012-06-04 - fixed itroduced trailing space with boolkey
2.28 2012-05-24 - added \add@psCode, which uses \pstVerb
instead of \pstverb
diff --git a/Master/texmf-dist/doc/generic/pstricks/pst-news12.pdf b/Master/texmf-dist/doc/generic/pstricks/pst-news12.pdf
index 04fe319386a..8250d1ed347 100644
--- a/Master/texmf-dist/doc/generic/pstricks/pst-news12.pdf
+++ b/Master/texmf-dist/doc/generic/pstricks/pst-news12.pdf
Binary files differ
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}