aboutsummaryrefslogtreecommitdiff
path: root/src/reproject.c
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-08-21 17:13:18 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-08-21 17:13:18 +0000
commitf1f7e3243ed291fa9276585f58f957c3f28d5212 (patch)
treed4be61936ff7b50e805f92834392d22bcdefd1f0 /src/reproject.c
parent25ccc1413dca19717009ced22a643df3223e1a42 (diff)
Stuff
git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@70 bf6ca9ba-c028-0410-8290-897cf20841d1
Diffstat (limited to 'src/reproject.c')
-rw-r--r--src/reproject.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/reproject.c b/src/reproject.c
index ad709d4..f62e8f3 100644
--- a/src/reproject.c
+++ b/src/reproject.c
@@ -9,4 +9,25 @@
*
*/
+#include <stdlib.h>
+
+#include "control.h"
+#include "reflections.h"
+
+#define MAX_IMAGE_REFLECTIONS 1024
+
+ImageReflection *reproject_get_reflections(ImageRecord *image, size_t *n, ReflectionContext *ref) {
+
+ ImageReflection *refl;
+ int i;
+
+ refl = malloc(MAX_IMAGE_REFLECTIONS*sizeof(ImageReflection));
+
+ i = 0;
+
+
+ *n = i;
+ return refl;
+
+}