diff options
author | Thomas White <taw@physics.org> | 2010-01-12 14:57:57 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-01-12 14:57:57 +0100 |
commit | aec12416e6af499306fd7579ec897b7d03e0f251 (patch) | |
tree | 46d1aea008149167aa83a9ed5c40c7b949efc36c /src/cell.h | |
parent | f15a2bd9185819365e3d84f878d1225822a93e3e (diff) |
Read the unit cell the right way round
Diffstat (limited to 'src/cell.h')
-rw-r--r-- | src/cell.h | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -60,12 +60,9 @@ extern void cell_get_cartesian(UnitCell *cell, double *bx, double *by, double *bz, double *cx, double *cy, double *cz); -extern void cell_set_cartesian_x(UnitCell *cell, - double ax, double bx, double cx); -extern void cell_set_cartesian_y(UnitCell *cell, - double ay, double by, double cy); -extern void cell_set_cartesian_z(UnitCell *cell, - double az, double bz, double cz); +extern void cell_set_cartesian_a(UnitCell *cell, double ax, double ay, double az); +extern void cell_set_cartesian_b(UnitCell *cell, double bx, double by, double bz); +extern void cell_set_cartesian_c(UnitCell *cell, double cx, double cy, double cz); extern void cell_get_reciprocal(UnitCell *cell, double *asx, double *asy, double *asz, |