Skip to content

Commit

Permalink
BUG: Lower tolerance on VerifyAngles in ThreeDCircularProjectionGeometry
Browse files Browse the repository at this point in the history
Fixes #491.
  • Loading branch information
Simon Rit committed Jul 12, 2022
1 parent 5daf3f5 commit f867f62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rtkThreeDCircularProjectionGeometry.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ rtk::ThreeDCircularProjectionGeometry::VerifyAngles(const double outOfP
using EulerType = itk::Euler3DTransform<double>;

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

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

0 comments on commit f867f62

Please sign in to comment.