diff options
author | Thomas White <taw@physics.org> | 2010-01-13 10:46:44 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-01-13 10:46:44 +0100 |
commit | f7d118ec0bc9e7dd964bbb9a8bc4fad46b8412d7 (patch) | |
tree | c4e3da3218d1f8c61a3e0e6147a260245018d9e0 /src/image.h | |
parent | 26dc86b5b6624177591909ae3d2c8d7d8bae9159 (diff) |
Make DirAx use optional
Diffstat (limited to 'src/image.h')
-rw-r--r-- | src/image.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/image.h b/src/image.h index 9649fe8e..7cf47761 100644 --- a/src/image.h +++ b/src/image.h @@ -46,6 +46,11 @@ struct imagefeature { /* Distance between this feature and its partner, if any. */ double partner_d; + /* Reciprocal space coordinates (m^-1 of course) of this feature */ + double rx; + double ry; + double rz; + }; /* An opaque type representing a list of image features */ |