diff options
author | Karl Berry <karl@freefriends.org> | 2017-09-13 22:05:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-09-13 22:05:24 +0000 |
commit | d6ff3070e027de3b86593e9813d4804c76351b85 (patch) | |
tree | df9f23b0f3802878ee0d266f97f80e5480a0bb52 /Master/texmf-dist/dvips/pstricks | |
parent | e8c20bb0877f0c49076ba2768b4cc359d973ed58 (diff) |
pstricks (14sep17)
git-svn-id: svn://tug.org/texlive/trunk@45288 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/dvips/pstricks')
-rw-r--r-- | Master/texmf-dist/dvips/pstricks/pstricks.pro | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/texmf-dist/dvips/pstricks/pstricks.pro b/Master/texmf-dist/dvips/pstricks/pstricks.pro index ad932f84696..60a9afcafbe 100644 --- a/Master/texmf-dist/dvips/pstricks/pstricks.pro +++ b/Master/texmf-dist/dvips/pstricks/pstricks.pro @@ -1,7 +1,7 @@ % $Id: pstricks.pro 446 2017-04-19 11:40:55Z herbert $ % %% PostScript prologue for pstricks.tex. -%% Version 1.24, 2016/04/22 +%% Version 1.25, 2017/09/12 %% %% This program can be redistributed and/or modified under the terms %% of the LaTeX Project Public License Distributed from CTAN archives @@ -54,7 +54,8 @@ tx@Dict begin 3 1 roll % yB-yA xA xB sub % yB-yA xA-xB Pyth } def -/PtoC { 2 copy cos mul 3 1 roll sin mul } def % Polar to Cartesian +/PtoC360 { 2 copy cos mul 3 1 roll sin mul } def % Polar to Cartesian (origimal) +/PtoC { pst@angleunit 2 copy cos mul 3 1 roll sin mul } def % Polar to Cartesian /PtoCab { dup cos 4 -1 roll mul 3 1 roll sin mul } def % Polar to Cartesian (Ellipse) a b phi-> x y %/Rand { rand 4294967295 div } def % a real random number /Rand { rand 2147483447 div } def % a real random number between 0 and 1 |