diff options
author | Karl Berry <karl@freefriends.org> | 2019-03-27 22:27:57 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-03-27 22:27:57 +0000 |
commit | 9121faed0cf54a08882acf41120cf28fc3a32998 (patch) | |
tree | fe7f0c5e9ed02fe4a1fc389c27c88750c2807e43 /Build/source/utils/asymptote/texfile.h | |
parent | b8e24fbf964b4030f68a8484a53d405869693266 (diff) |
asy 2.48 sources
git-svn-id: svn://tug.org/texlive/trunk@50622 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/texfile.h')
-rw-r--r-- | Build/source/utils/asymptote/texfile.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/utils/asymptote/texfile.h b/Build/source/utils/asymptote/texfile.h index 4a51459ee71..2f07a2759a4 100644 --- a/Build/source/utils/asymptote/texfile.h +++ b/Build/source/utils/asymptote/texfile.h @@ -173,8 +173,8 @@ template<class T> bool setlatexfont(T& out, const pen& p, const pen& lastpen) { if(p.size() != lastpen.size() || p.Lineskip() != lastpen.Lineskip()) { - out << "\\fontsize{" << p.size()*ps2tex << "}{" << p.Lineskip()*ps2tex - << "}\\selectfont\n"; + out << "\\fontsize{" << p.size()*settings::ps2tex << "}{" + << p.Lineskip()*settings::ps2tex << "}\\selectfont\n"; return true; } return false; @@ -278,7 +278,7 @@ public: void dot(path p, pen, bool newPath=true); void writeshifted(pair z) { - write(conj(z)*ps2tex); + write(conj(z)*settings::ps2tex); } void translate(pair z) {} |