summaryrefslogtreecommitdiff
path: root/graphics/epix/doc/dots.xp
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-06-13 03:02:55 +0000
committerNorbert Preining <norbert@preining.info>2020-06-13 03:02:55 +0000
commit2d0067edb74f15b431d7a1e3a42b4f525986cef0 (patch)
tree06198722777ad0af165eb45b12960c56b226b0cf /graphics/epix/doc/dots.xp
parentc2fde990c352049f8aa6bc9629fee95bad518cde (diff)
CTAN sync 202006130302
Diffstat (limited to 'graphics/epix/doc/dots.xp')
-rw-r--r--graphics/epix/doc/dots.xp28
1 files changed, 0 insertions, 28 deletions
diff --git a/graphics/epix/doc/dots.xp b/graphics/epix/doc/dots.xp
deleted file mode 100644
index 1f13fb6099..0000000000
--- a/graphics/epix/doc/dots.xp
+++ /dev/null
@@ -1,28 +0,0 @@
-/* -*-ePiX-*- */
-/* dots.c -- Dot primitives */
-#include "epix.h"
-using namespace ePiX;
-
-int main()
-{
- unitlength("1pt");
- bounding_box(P(0,0), P(8,1));
- picture(P(72,12));
- offset(P(10,2));
-
- begin();
-
- spot(P(0,0));
- dot(P(1,0));
- ddot(P(2,0));
-
- box(P(4,0));
- bbox(P(5,0));
-
- line(P(6.5,0), P(8.75,0));
-
- ring(P(7,0));
- circ(P(8,0));
-
- end();
-}