aboutsummaryrefslogtreecommitdiff
path: root/src/cell.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-01-12 14:57:57 +0100
committerThomas White <taw@physics.org>2010-01-12 14:57:57 +0100
commitaec12416e6af499306fd7579ec897b7d03e0f251 (patch)
tree46d1aea008149167aa83a9ed5c40c7b949efc36c /src/cell.h
parentf15a2bd9185819365e3d84f878d1225822a93e3e (diff)
Read the unit cell the right way round
Diffstat (limited to 'src/cell.h')
-rw-r--r--src/cell.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/cell.h b/src/cell.h
index ba10d638..50046620 100644
--- a/src/cell.h
+++ b/src/cell.h
@@ -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,