Skip to content

Commit

Permalink
close #414
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Dec 24, 2024
1 parent 872d2b7 commit f28f6c0
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,12 @@ private void homeLimb(DHParameterKinematics c) {
double[] joints = c.getCurrentJointSpaceVector();
for (int i = 0; i < c.getNumberOfLinks(); i++) {
joints[i] = 0;
if(c.getFollowerMobileBase(i)!=null) {
homeBase(c.getFollowerMobileBase(i));
try {
if(c.getFollowerMobileBase(i)!=null) {
homeBase(c.getFollowerMobileBase(i));
}
}catch(Exception ex) {
ex.printStackTrace();
}
}
try {
Expand Down

0 comments on commit f28f6c0

Please sign in to comment.