diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-10-11 11:32:28 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-10-11 12:19:34 +0200 |
commit | f87ca86a994cdc3205a294e9bbbeddde312ea53b (patch) | |
tree | 218fcecfe2b37906ce1646e5001b6c56fc0a8502 /include | |
parent | 90ef1f69d79a0c40414c5932dfa9bd69f363ae80 (diff) | |
download | astra-f87ca86a994cdc3205a294e9bbbeddde312ea53b.tar.gz astra-f87ca86a994cdc3205a294e9bbbeddde312ea53b.tar.bz2 astra-f87ca86a994cdc3205a294e9bbbeddde312ea53b.tar.xz astra-f87ca86a994cdc3205a294e9bbbeddde312ea53b.zip |
Make geometry config checks slightly less numerically strict
Diffstat (limited to 'include')
-rw-r--r-- | include/astra/Globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/astra/Globals.h b/include/astra/Globals.h index 8375726..0adc3e5 100644 --- a/include/astra/Globals.h +++ b/include/astra/Globals.h @@ -142,7 +142,7 @@ namespace astra { const float32 PI32 = 3.14159265358979323846264338328f; const float32 PIdiv2 = PI / 2; const float32 PIdiv4 = PI / 4; - const float32 eps = 1e-7f; + const float32 eps = 1e-6f; extern _AstraExport bool running_in_matlab; } |