1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
.PS
#Euro.m4
gen_init
divert(-1)
`euro_simple([height])
Basic euro symbol with round outer boundary
default height=10pt'
define(`euro_simple',
`[ linethick = 0
orad = ifelse(`$1',,`5bp__',(`$1')/2)
u = orad/6
irad = orad - u
C: (0,0)
D: C+(Rect_(irad,40))
CD: move from C+(0,-orad) to D
DK: move from D down u
Ubot: move from C+(0,u/2) right u
Utop: move from Ubot.start+(0,u) right u
Ltop: move from C+(0,-u/2) right u
Lbot: move from Ltop.start+(0,-u) right u
L_edge: C-(7.5*u,0)
Start: (C,Utop)
slope = (CD.end.y-CD.start.y)/(CD.end.x-CD.start.x)
shade(0,
line from Start to Intersect_(Utop,CD) \
then to Intersect_(Ubot,CD) \
then to LCintersect(Ubot,C,irad)
arc to LCintersect(Ltop,C,irad) with .c at C
line to Intersect_(Ltop,CD) \
then to Intersect_(Lbot,CD) \
then to LCintersect(Lbot,C,irad)
arc to (D,C)-(0,D.y-C.y) with .c at C
line to LCintersect(DK,C,orad,R)
arc cw to LCintersect(Lbot,C,orad) with .c at C
line to (L_edge,Here) \
then right u/slope up u \
then to LCintersect(Ltop,C,orad)
arc cw to LCintersect(Ubot,C,orad) with .c at C
line to (L_edge,Here) \
then right u/slope up u \
then to LCintersect(Utop,C,orad)
arc cw to LCintersect(CD,C,orad,R) with .c at C
line to D
arc to LCintersect(Utop,C,irad) with .c at C
line to Start
) ]')
`euro_symbol([ht=val; aspect=val; slant=degrees])
Euro symbol with variable aspect ratio and slant
defaults: ht=10pt, aspect=1, slant=0
e.g., euro_symbol(ht=14pt__; aspect=1.2)'
define(`euro_symbol',`[
setkey_(`$1',ht,10pt__) setkey_(`$1',aspect,1) setkey_(`$1',slant,0)
linethick = 0
orad = m4ht/2
u = orad/6
irad = orad - u
if m4aspect==0 then { squeeze = 1 } else { squeeze = 1/m4aspect }
slant = sind(m4slant)
C: (0,0)
D: C+(Rect_(irad,40))
CD: move from C+(0,-orad) to D
DK: move from D down u
Ubot: move from C+(0,u/2) right u
Utop: move from Ubot.start+(0,u) right u
Ltop: move from C+(0,-u/2) right u
Lbot: move from Ltop.start+(0,-u) right u
L_edge: C-(7.5*u,0)
Start: (C,Utop)
slope = (CD.end.y-CD.start.y)/(CD.end.x-CD.start.x)
shade(0,
S: LCintersect(Ubot,C,irad)
line from euro_tr(Start) to euro_tr(Intersect_(Utop,CD)) \
then to euro_tr(Intersect_(Ubot,CD)) \
then to euro_tr(S)
euro_arc(S,LCintersect(Ltop,C,irad),irad)
S: LCintersect(Lbot,C,irad)
line to euro_tr(Intersect_(Ltop,CD)) \
then to euro_tr(Intersect_(Lbot,CD)) \
then to euro_tr(S)
euro_arc(S,((D,C)-(0,D.y-C.y)),irad)
S: LCintersect(DK,C,orad,R)
line to euro_tr(S)
euro_arc(S,LCintersect(Lbot,C,orad),orad,cw)
S: LCintersect(Ltop,C,orad)
E: LCintersect(Lbot,C,orad)
line to euro_tr((L_edge,E)) \
then to euro_tr((L_edge,E)+(u/slope,u)) \
then to euro_tr(S)
E: LCintersect(Ubot,C,orad)
euro_arc(S,E,orad,cw)
S: LCintersect(Utop,C,orad)
line to euro_tr((L_edge,E)) \
then to euro_tr((L_edge,E)+(u/slope,u)) \
then to euro_tr(S)
euro_arc(S,LCintersect(CD,C,orad,R),orad,cw)
line to euro_tr(D)
euro_arc(D,LCintersect(Utop,C,irad),irad)
line to euro_tr(Start)
) ]')
`aspect ratio and slant transformation'
define(`euro_tr',`((`$1').x*squeeze+(`$1').y*slant,(`$1').y)')
`transformed arc, centre C'
define(`euro_arc',
`M4X: `$1'; as = atan2(M4X.y-C.y,M4X.x-C.x)
M4X: `$2'; ae = atan2(M4X.y-C.y,M4X.x-C.x)
ifelse(`$4',cw,`if ae > as then { ae -= twopi_ }',
`if ae < as then { ae += twopi_ }')
ax = ae-as
n = max(5,ceiling_(abs(ax)/(10*dtor_)))
for i=0 to n do { P[i]: euro_tr((rect_(`$3',as+i/n*ax))) }
fitcurve(P,n)
move to P[n] ')
divert(0)dnl
euro_simple
move
euro_symbol(slant=15)
move
euro_simple(72bp__)
move
euro_symbol(ht=72bp__*2; aspect=1.0; slant=15)
.PE
|