Skip to content

Commit 7ce4b36

Browse files
committed
Fixed a couple of arrows which were in the wrong direction.
1 parent d92ee79 commit 7ce4b36

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

tree71.mp

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% tex/conc/mp/tree71.mp 2014-12-21 Alan U. Kennington.
1+
% tex/conc/mp/tree71.mp 2017-12-28 Alan U. Kennington.
22
% $Id: tex/conc/mp/tree71.mp c411b46503 2014-12-21 03:34:58Z Alan U. Kennington $
33
% Family tree for classes of omega-infinite, countable and uncountable sets.
44

@@ -19,6 +19,7 @@ etex
1919
beginfig(1);
2020
numeric w[], h[];
2121
pair p[];
22+
color col[];
2223

2324
w0 := 180pt;
2425
w1 := 45pt;
@@ -30,6 +31,9 @@ h3 := h1 + 10pt;
3031
h4 := h3 + 2pt;
3132
sepA := 20pt;
3233

34+
col1 := 0.3white;
35+
scA := 0.8;
36+
3337
p1 := (0,0);
3438
p2 := p1 + (-w1,-h1);
3539
p3 := p1 + (0,-h1);
@@ -127,8 +131,10 @@ B_arrow(1,3,1);
127131
B_arrow(3,4,1);
128132
B_arrow(4,5,1);
129133

130-
B_arrow(2,10,1);
131-
B_arrow(5,10,1);
134+
% B_arrow(2,10,2);
135+
% B_arrow(5,10,2);
136+
B_arrowcol(2, 10, 2, col1, evenly scaled scA);
137+
B_arrowcol(5, 10, 2, col1, evenly scaled scA);
132138

133139
B_arrow(3,20,1);
134140
B_arrow(4,21,1);
@@ -139,8 +145,10 @@ B_arrow(41,42,1);
139145
B_arrow(41,43,1);
140146
B_arrow(43,45,1);
141147

142-
B_arrow(42,50,1);
143-
B_arrow(45,50,1);
148+
% B_arrow(42,50,2);
149+
% B_arrow(45,50,2);
150+
B_arrowcol(42, 50, 2, col1, evenly scaled scA);
151+
B_arrowcol(45, 50, 2, col1, evenly scaled scA);
144152

145153
B_arrow(43,60,1);
146154

tree72.mp

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% tex/conc/mp/tree72.mp 2014-11-21 Alan U. Kennington.
1+
% tex/conc/mp/tree72.mp 2017-12-28 Alan U. Kennington.
22
% $Id: tex/conc/mp/tree72.mp eb9a01ef2b 2014-12-21 04:40:49Z Alan U. Kennington $
33
% Family tree for classes of finite and infinite sets.
44

@@ -32,12 +32,16 @@ etex
3232
beginfig(1);
3333
numeric w[], h[];
3434
pair p[];
35+
color col[];
3536

3637
w1 := 50pt;
3738
h1 := 32pt;
3839
% h2 := h1;
3940
h2 := h1 + 5pt;
4041

42+
col1 := 0.3white;
43+
scA := 0.8;
44+
4145
p1 := (0,0);
4246
p2 := p1 + (-w1,-h1);
4347
p3 := p1 + (w1,-h1);
@@ -73,11 +77,13 @@ B_draw(6, btex\baselineskip\blskip
7377
% Draw the arrows.
7478
B_margset(2pt, 2pt);
7579
B_arrow(1,2,1);
76-
B_arrow(2,6,1);
80+
% B_arrow(2,6,1);
81+
B_arrowcol(2, 6, 2, col1, evenly scaled scA);
7782
B_arrow(1,3,1);
7883
B_arrow(3,4,1);
7984
B_arrow(4,5,1);
80-
B_arrow(5,6,1);
85+
% B_arrow(5,6,1);
86+
B_arrowcol(5, 6, 2, col1, evenly scaled scA);
8187

8288
endfig;
8389
end

0 commit comments

Comments
 (0)