aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-10-16 17:12:49 +0200
committerThomas White <taw@bitwiz.org.uk>2009-10-16 17:12:49 +0200
commit8b883cd945ec49ec117ceee3b82760eb20d5c3a6 (patch)
treeb51dc51bf3529a1a80d2452beed6ca7b78e65633 /src/main.c
parentf5dab4ce7e8aea035ee25ca8f818e5779eb88726 (diff)
Perform the indexing, and test
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 257a1169..9c678667 100644
--- a/src/main.c
+++ b/src/main.c
@@ -93,7 +93,7 @@ int main(int argc, char *argv[])
struct image image;
- printf("%6i: %s\n", i+1, in_files[i]);
+ printf("%6i: %s ", i+1, in_files[i]);
image.width = 512;
image.height = 512;
@@ -112,6 +112,9 @@ int main(int argc, char *argv[])
try_templates(&image, templates);
+ printf("%6.2f %6.2f\n", rad2deg(image.omega),
+ rad2deg(image.tilt));
+
}
return 0;