diff options
author | tlatorre <tlatorre@uchicago.edu> | 2018-09-26 08:56:26 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2018-09-26 08:56:26 -0500 |
commit | 8bdcdbc04913df2d0d4ce4d1d8d85c8da2185e59 (patch) | |
tree | bb29b3ee3e8b9c86d746102596518b7278cb9247 /src | |
parent | f23450aa8b225fc38a3fdbf9d9db489f4aba7158 (diff) | |
download | sddm-8bdcdbc04913df2d0d4ce4d1d8d85c8da2185e59.tar.gz sddm-8bdcdbc04913df2d0d4ce4d1d8d85c8da2185e59.tar.bz2 sddm-8bdcdbc04913df2d0d4ce4d1d8d85c8da2185e59.zip |
increase number of points in cos(theta) interpolation to 1000
Diffstat (limited to 'src')
-rw-r--r-- | src/scattering.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scattering.c b/src/scattering.c index 433387d..c95f31e 100644 --- a/src/scattering.c +++ b/src/scattering.c @@ -16,7 +16,7 @@ static double xlo = -1.0; static double xhi = 1.0; -static size_t nx = 200; +static size_t nx = 1000; static double ylo = 0.0; static double yhi = 1.0; static size_t ny = 1000; |