Skip to content

Commit

Permalink
Adjusting coplanar check
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunderscore committed Jul 30, 2022
1 parent 9b9e211 commit 52c166e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenVR-SpaceCalibrator/CalibrationCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ bool CalibrationCalc::ValidateCalibration(const Eigen::AffineCompact3d &calibrat
CalCtx.Log(oss.str());
oss.clear();

if (variance(1) < 0.00005) {
if (variance(1) < 0.0005) {
CalCtx.Log("Calibration points are nearly coplanar. Try moving around more?\n");
ok = false;
}
Expand Down

0 comments on commit 52c166e

Please sign in to comment.