From 60044b411e0bf56de63481960d9ac90bbfd94096 Mon Sep 17 00:00:00 2001 From: Alexander Iljin Date: Thu, 16 Mar 2017 19:11:55 +0300 Subject: [PATCH] pos: delete vocab from unmaintained It was only useful with the self vocab, which is long gone. --- unmaintained/pos/authors.txt | 1 - unmaintained/pos/pos.factor | 22 ---------------------- 2 files changed, 23 deletions(-) delete mode 100644 unmaintained/pos/authors.txt delete mode 100644 unmaintained/pos/pos.factor diff --git a/unmaintained/pos/authors.txt b/unmaintained/pos/authors.txt deleted file mode 100644 index 6cfd5da273..0000000000 --- a/unmaintained/pos/authors.txt +++ /dev/null @@ -1 +0,0 @@ -Eduardo Cavazos diff --git a/unmaintained/pos/pos.factor b/unmaintained/pos/pos.factor deleted file mode 100644 index b150c5bda1..0000000000 --- a/unmaintained/pos/pos.factor +++ /dev/null @@ -1,22 +0,0 @@ - -USING: kernel math math.functions math.vectors sequences self -accessors ; - -IN: pos - -! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - -TUPLE: pos val ; - -C: pos - -: pos> ( -- val ) self> val>> ; - -: >pos ( val -- ) self> val<< ; - -! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - -: distance ( pos pos -- n ) val>> swap val>> v- [ sq ] map-sum sqrt ; - -: move-by ( point -- ) pos> v+ >pos ; -