Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tags/Version Original/ARToolkit/lib/SRC/AR/mDisp.c
diff options
context:
space:
mode:
Diffstat (limited to 'tags/Version Original/ARToolkit/lib/SRC/AR/mDisp.c')
-rwxr-xr-xtags/Version Original/ARToolkit/lib/SRC/AR/mDisp.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/tags/Version Original/ARToolkit/lib/SRC/AR/mDisp.c b/tags/Version Original/ARToolkit/lib/SRC/AR/mDisp.c
deleted file mode 100755
index 54ab570..0000000
--- a/tags/Version Original/ARToolkit/lib/SRC/AR/mDisp.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/*******************************************************
- *
- * Author: Shinsaku Hiura, Hirokazu Kato
- *
- * shinsaku@sys.es.osaka-u.ac.jp
- * kato@sys.im.hiroshima-cu.ac.jp
- *
- * Revision: 2.1
- * Date: 99/07/16
- *
-*******************************************************/
-#include <stdio.h>
-#include <math.h>
-#include <AR/matrix.h>
-
-int arMatrixDisp(ARMat *m)
-{
- int r, c;
-
- printf(" === matrix (%d,%d) ===\n", m->row, m->clm);
- for(r = 0; r < m->row; r++) {
- printf(" |");
- for(c = 0; c < m->clm; c++) {
- printf(" %10g", ARELEM0(m, r, c));
- }
- printf(" |\n");
- }
- printf(" ======================\n");
-
- return 0;
-}