summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/fonts/source/public/malayalam/effects
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-08-23 22:42:38 +0000
committerKarl Berry <karl@freefriends.org>2012-08-23 22:42:38 +0000
commitb0ecade6115b3615f319e392b1a2108fe0fd86d4 (patch)
treef2c2e52c29f55f27deeed17f001dc6ca3b3fae2f /Master/texmf-dist/fonts/source/public/malayalam/effects
parentc74d9648abb6877ccf4c69fdd39bb8d3763574bf (diff)
rm malayalam, stale wrt CTAN (RobinF msg 23 Aug 2012 11:59:14)
git-svn-id: svn://tug.org/texlive/trunk@27509 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/fonts/source/public/malayalam/effects')
-rw-r--r--Master/texmf-dist/fonts/source/public/malayalam/effects/effect.mf1
-rw-r--r--Master/texmf-dist/fonts/source/public/malayalam/effects/esoteric.mf27
-rw-r--r--Master/texmf-dist/fonts/source/public/malayalam/effects/hstripes.mf44
-rw-r--r--Master/texmf-dist/fonts/source/public/malayalam/effects/malayalam-reverse.mf34
-rw-r--r--Master/texmf-dist/fonts/source/public/malayalam/effects/outline.mf20
-rw-r--r--Master/texmf-dist/fonts/source/public/malayalam/effects/shadow.mf37
6 files changed, 0 insertions, 163 deletions
diff --git a/Master/texmf-dist/fonts/source/public/malayalam/effects/effect.mf b/Master/texmf-dist/fonts/source/public/malayalam/effects/effect.mf
deleted file mode 100644
index fcf3fcbdc5d..00000000000
--- a/Master/texmf-dist/fonts/source/public/malayalam/effects/effect.mf
+++ /dev/null
@@ -1 +0,0 @@
-input shadow.mf;
diff --git a/Master/texmf-dist/fonts/source/public/malayalam/effects/esoteric.mf b/Master/texmf-dist/fonts/source/public/malayalam/effects/esoteric.mf
deleted file mode 100644
index 6df5d0645f6..00000000000
--- a/Master/texmf-dist/fonts/source/public/malayalam/effects/esoteric.mf
+++ /dev/null
@@ -1,27 +0,0 @@
-% esoteric.mf --- esoteric shadow effect
-
-define_whole_pixels(ht);
-shshift := 0.06ht;
-svshift := -0.06ht;
-
-def pattern=
- def endchar=
- cullit;
- picture NormalChar;
- NormalChar=currentpicture;
- clearit;
- currentpicture:=NormalChar shifted (shshift, svshift);
- picture Shadow;
- Shadow:=currentpicture;
- clearit;
- currentpicture:=Shadow-NormalChar;
- % The rest is from standard endchar
- scantokens extra_endchar;
- chardx:=w;
- shipit;
- if displaying>0: showit; fi
- endgroup
- enddef;
-enddef;
-
-% end of esoteric.mf
diff --git a/Master/texmf-dist/fonts/source/public/malayalam/effects/hstripes.mf b/Master/texmf-dist/fonts/source/public/malayalam/effects/hstripes.mf
deleted file mode 100644
index d42fa46d7e7..00000000000
--- a/Master/texmf-dist/fonts/source/public/malayalam/effects/hstripes.mf
+++ /dev/null
@@ -1,44 +0,0 @@
-% hstripes.mf --- horizontal stripes effect
-
-define_whole_pixels(ht);
-topline := 1.6ht;
-botline := -1.0ht;
-
-stepsize# := .05ht#;
-verythin# := .01ht#;
-define_whole_pixels(stepsize, verythin);
-
-pickup penrazor scaled verythin rotated 90;
-MinPen := savepen;
-
-def pattern=
- def endchar=
- cullit;
- picture NormalChar;
- NormalChar=currentpicture;
- clearit;
- % fill (0,-desc-2vo)--(w+ho, -desc-2vo)--
- % (w+ho, cap+2vo)--(0, cap+2vo)--cycle;
- fill ((0-10uw,botline)--(w+10uw,botline)--(w+10uw,topline)--(0-10uw,topline)--cycle) shifted -(.5rm, 0);
- picture BlackBox;
- BlackBox:=currentpicture;
- picture ReverseVideo;
- ReverseVideo=BlackBox-NormalChar;
- clearit;
- pickup MinPen;
- for f=botline step stepsize until topline:
- draw ((0-9uw,f)--(w+9uw,f)) shifted -(.5rm, 0);
- endfor;
- picture StripeOverlay;
- StripeOverlay=currentpicture;
- currentpicture:=StripeOverlay-ReverseVideo
- % The rest is from standard endchar
- scantokens extra_endchar;
- chardx:=w;
- shipit;
- if displaying>0: showit; fi
- endgroup
- enddef;
-enddef;
-
-% end of hstripes.mf
diff --git a/Master/texmf-dist/fonts/source/public/malayalam/effects/malayalam-reverse.mf b/Master/texmf-dist/fonts/source/public/malayalam/effects/malayalam-reverse.mf
deleted file mode 100644
index 693decab52c..00000000000
--- a/Master/texmf-dist/fonts/source/public/malayalam/effects/malayalam-reverse.mf
+++ /dev/null
@@ -1,34 +0,0 @@
-% reverse.mf -- reverse video effect (does not work correctly
-% with characters that stick out of their box of the
-% left or right).
-
-define_whole_pixels(ht);
-
-topline := 1.6ht;
-botline := -1.0ht;
-
-def pattern=
- def endchar=
- cullit;
- picture NormalChar;
- NormalChar=currentpicture;
- clearit;
- % fill (0,-desc-2vo)--(w+ho, -desc-2vo)--
- % (w+ho, cap+2vo)--(0, cap+2vo)--cycle;
- fill ((0,botline)--(w,botline)--(w,topline)--
- (0,topline)--cycle) shifted -(.5rm, 0);
- picture BlackBox;
- BlackBox:=currentpicture;
- picture ReverseVideo;
- ReverseVideo=BlackBox-NormalChar;
- currentpicture:=ReverseVideo
- % The rest is from standard endchar
- scantokens extra_endchar;
- chardx:=w;
- shipit;
- if displaying>0: showit; fi
- endgroup
- enddef;
-enddef;
-
-% end of reverse.mf
diff --git a/Master/texmf-dist/fonts/source/public/malayalam/effects/outline.mf b/Master/texmf-dist/fonts/source/public/malayalam/effects/outline.mf
deleted file mode 100644
index cedb93e9cfa..00000000000
--- a/Master/texmf-dist/fonts/source/public/malayalam/effects/outline.mf
+++ /dev/null
@@ -1,20 +0,0 @@
-% outline.mf --- outline effect
-
-def pattern=
- def endchar=
- cull currentpicture keeping (1, infinity);
- picture v; v := currentpicture;
- cull currentpicture keeping (1,1) withweight 3;
- addto currentpicture also v - v shifted right
- - v shifted left - v shifted up - v shifted down;
- cull currentpicture keeping (1,4);
- % rest from standard endchar
- scantokens extra_endchar;
- chardx:=w;
- shipit;
- if displaying>0: showit; fi
- endgroup
- enddef;
-enddef;
-
-% end of outline.mf
diff --git a/Master/texmf-dist/fonts/source/public/malayalam/effects/shadow.mf b/Master/texmf-dist/fonts/source/public/malayalam/effects/shadow.mf
deleted file mode 100644
index c6478bdb80b..00000000000
--- a/Master/texmf-dist/fonts/source/public/malayalam/effects/shadow.mf
+++ /dev/null
@@ -1,37 +0,0 @@
-% shadow.mf --- shadow effect
-
-define_whole_pixels(ht);
-shshift := 0.06ht;
-svshift := -0.06ht;
-
-def pattern=
- def endchar=
- cullit;
- picture NormalChar;
- NormalChar=currentpicture;
- cull currentpicture keeping (1, infinity);
- picture v; v := currentpicture;
- cull currentpicture keeping (1,1) withweight 3;
- addto currentpicture also v - v shifted right
- - v shifted left - v shifted up - v shifted down;
- cull currentpicture keeping (1,4);
- picture OutlineChar;
- OutlineChar=currentpicture;
- clearit;
- currentpicture:=NormalChar shifted (shshift, svshift);
- picture Shadow;
- Shadow:=currentpicture;
- clearit;
- currentpicture:=Shadow-NormalChar;
- cullit;
- currentpicture:=currentpicture+OutlineChar;
- % The rest is from standard endchar
- scantokens extra_endchar;
- chardx:=w;
- shipit;
- if displaying>0: showit; fi
- endgroup
- enddef;
-enddef;
-
-% end of shadow.mf