Skip to content

Commit b0e299c

Browse files
haudrenLevi-Armstrong
authored andcommitted
Fix error message IKFast -> OPW
The error message when attempting to use a non-implemented method in OPWInvKin mentions IKFastInvKin, so update that as it's probably a copy-paste error.
1 parent 7b228af commit b0e299c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tesseract/tesseract_kinematics/src/opw/opw_inv_kin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ bool OPWInvKin::calcInvKin(Eigen::VectorXd& /*solutions*/,
9191
const Eigen::Ref<const Eigen::VectorXd>& /*seed*/,
9292
const std::string& /*link_name*/) const
9393
{
94-
throw std::runtime_error("IKFastInvKin::calcInvKin(Eigen::VectorXd&, const Eigen::Isometry3d&, const "
94+
throw std::runtime_error("OPWInvKin::calcInvKin(Eigen::VectorXd&, const Eigen::Isometry3d&, const "
9595
"Eigen::Ref<const Eigen::VectorXd>&, const std::string&) Not Supported!");
9696
}
9797

0 commit comments

Comments
 (0)