aboutsummaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-10-14 17:35:18 +0200
committerThomas White <taw@bitwiz.org.uk>2009-10-14 17:35:18 +0200
commit4e1e2ef4472e28a146e6c83d053f1fc4d2419f88 (patch)
treeb1702fc01bb3483bd566b0e9b38e84e376216462 /src/image.h
parent58d51685fbaad1cdfce7fcbd15ab70456f9ef328 (diff)
Calculate reflections using reciprocal cell
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/image.h b/src/image.h
index 69b8cc79..fc8a1f2f 100644
--- a/src/image.h
+++ b/src/image.h
@@ -82,10 +82,13 @@ struct image {
typedef struct _imagelist ImageList;
+/* Image lists */
extern ImageList *image_list_new(void);
extern int image_add(ImageList *list, struct image *image);
+
+/* Feature lists */
extern ImageFeatureList *image_feature_list_new(void);
extern void image_feature_list_free(ImageFeatureList *flist);
@@ -93,11 +96,6 @@ extern void image_feature_list_free(ImageFeatureList *flist);
extern void image_add_feature(ImageFeatureList *flist, double x, double y,
struct image *parent, double intensity);
-extern void image_add_feature_reflection(ImageFeatureList *flist,
- double x, double y,
- struct image *parent,
- double intensity);
-
extern struct imagefeature *image_feature_closest(ImageFeatureList *flist,
double x, double y, double *d,
int *idx);