summaryrefslogtreecommitdiffstats
path: root/include/astra
diff options
context:
space:
mode:
authorWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2017-10-11 11:32:28 +0200
committerWillem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>2017-10-11 12:19:34 +0200
commitf87ca86a994cdc3205a294e9bbbeddde312ea53b (patch)
tree218fcecfe2b37906ce1646e5001b6c56fc0a8502 /include/astra
parent90ef1f69d79a0c40414c5932dfa9bd69f363ae80 (diff)
downloadastra-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/astra')
-rw-r--r--include/astra/Globals.h2
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;
}