Skip to content

Commit f867f62

Browse files
author
Simon Rit
committed
BUG: Lower tolerance on VerifyAngles in ThreeDCircularProjectionGeometry
Fixes #491.
1 parent 5daf3f5 commit f867f62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rtkThreeDCircularProjectionGeometry.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ rtk::ThreeDCircularProjectionGeometry::VerifyAngles(const double outOfP
676676
using EulerType = itk::Euler3DTransform<double>;
677677

678678
const Matrix3x3Type & rm = referenceMatrix; // shortcut
679-
const double EPSILON = 1e-5; // internal tolerance for comparison
679+
const double EPSILON = 1e-4; // internal tolerance for comparison
680680

681681
EulerType::Pointer euler = EulerType::New();
682682
euler->SetComputeZYX(false); // ZXY order

0 commit comments

Comments
 (0)