/* * basis.h * * Find approximate lattices to feed various procedures * * (c) 2007 Thomas White * * dtr - Diffraction Tomography Reconstruction * */ #ifndef BASIS_H #define BASIS_H #ifdef HAVE_CONFIG_H #include #endif #include "control.h" typedef struct { double x; double y; double z; } Vector; typedef struct basis_struct { Vector a; Vector b; Vector c; } Basis; extern Basis *basis_find(ControlContext *ctx); #endif /* BASIS_H */