diff options
author | Karl Berry <karl@freefriends.org> | 2019-10-21 17:29:28 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-10-21 17:29:28 +0000 |
commit | ef2ee92ba9a13edf8ae31e3941f8a47dae5e928e (patch) | |
tree | 5bef718b5f900818966788c4553a415a9cd7d3b9 /Build/source/utils/asymptote/triple.h | |
parent | 9474b7db3211261c19db160af542aa1a855659b6 (diff) |
asy 2.59 sources
git-svn-id: svn://tug.org/texlive/trunk@52473 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/triple.h')
-rw-r--r-- | Build/source/utils/asymptote/triple.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Build/source/utils/asymptote/triple.h b/Build/source/utils/asymptote/triple.h index af42e28583b..e0caf511927 100644 --- a/Build/source/utils/asymptote/triple.h +++ b/Build/source/utils/asymptote/triple.h @@ -103,14 +103,6 @@ public: (t[1]*v.x+t[5]*v.y+t[9]*v.z+t[13])*f); } - // return z component of v*t. - friend double TransformZ(const triple& v, const double* t) - { - double f=t[3]*v.x+t[7]*v.y+t[11]*v.z+t[15]; - f=1.0/f; - return (t[2]*v.x+t[6]*v.y+t[10]*v.z+t[14])*f; - } - friend void transformtriples(const double* t, size_t n, triple* d, const triple* s) { |