summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/metauml/metauml_manual/fig/mptrace.tmp
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/metapost/metauml/metauml_manual/fig/mptrace.tmp')
-rw-r--r--Master/texmf-dist/doc/metapost/metauml/metauml_manual/fig/mptrace.tmp37
1 files changed, 0 insertions, 37 deletions
diff --git a/Master/texmf-dist/doc/metapost/metauml/metauml_manual/fig/mptrace.tmp b/Master/texmf-dist/doc/metapost/metauml/metauml_manual/fig/mptrace.tmp
deleted file mode 100644
index 041bb2d0e52..00000000000
--- a/Master/texmf-dist/doc/metapost/metauml/metauml_manual/fig/mptrace.tmp
+++ /dev/null
@@ -1,37 +0,0 @@
-
-input metauml;
-
-iPict.boxed := 1;
-
-beginfig(1);
- iClass.shade := 3;
- Class.F("Foo")("a: int","b: int")();
- Class.B("Bar")()();
- B.nw = F.ne + (20,-20);
-
- drawObjects(B, F);
-
- link(association)(B.nw -- F.ne);
-
- draw objectBorder(B) withcolor red;
- draw objectBorder(F) withcolor blue;
-
- link(association)(pathCut(B,F)(B.c--F.c));
-endfig;
-
-beginfig(2);
- save A, B;
-
- Picture.A("A");
- Picture.B("Blue");
-
- B.sw = A.ne + (20,20);
-
- drawObjects(A, B);
-
- link(associationUni)(pathManhattanX(A.e, B));
-endfig;
-
-end
-
-end