aboutsummaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/image.h b/src/image.h
index c596abfe..35bd5da9 100644
--- a/src/image.h
+++ b/src/image.h
@@ -46,10 +46,22 @@ struct imagefeature {
/* An opaque type representing a list of image features */
typedef struct _imagefeaturelist ImageFeatureList;
+
+/* A 3D vector in reciprocal space */
+struct threevec
+{
+ double u;
+ double v;
+ double w;
+};
+
+
/* Structure describing an image */
struct image {
uint16_t *data;
+ double *sfacs;
+ struct threevec *qvecs;
/* Radians. Defines where the pattern lies in reciprocal space */
double tilt;