diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-10-16 11:24:45 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2009-10-16 11:24:45 +0200 |
commit | 15de5ba81a81c537310100e1f36d040455f29abd (patch) | |
tree | 0daeea792241723d8511e55450d47a47d6fc0cf5 | |
parent | 171a98136511e42c3a20b942ad8426e3c906e243 (diff) |
New image parameters
-rw-r--r-- | src/sim-main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sim-main.c b/src/sim-main.c index fe8572bc..c2aef654 100644 --- a/src/sim-main.c +++ b/src/sim-main.c @@ -70,8 +70,8 @@ int main(int argc, char *argv[]) list = image_list_new(); image.width = 512; image.height = 512; - image.tilt = 0.0; - image.omega = 0.0; + image.tilt = deg2rad(10.0); + image.omega = deg2rad(0.0); image.fmode = FORMULATION_CLEN; image.x_centre = 255.5; image.y_centre = 255.5; |