Skip to content

Commit

Permalink
resolve segfault in testMex
Browse files Browse the repository at this point in the history
  • Loading branch information
RussTedrake committed Feb 15, 2015
1 parent e48db1e commit c73381d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion systems/plants/RigidBodyManipulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1912,7 +1912,7 @@ void RigidBodyManipulator::forwardJacDot(const int body_or_frame_id, const Matri

MatrixXd tmp = bodies[body_ind]->dTdqdot*Tframe*pts;
MatrixXd Jdott = Map<MatrixXd>(tmp.data(),num_dof,3*n_pts);
Jdot = Jdott.transpose();
Jdot.block(0,0,3*n_pts,num_dof) = Jdott.transpose();

if (rotation_type==1) {

Expand Down

0 comments on commit c73381d

Please sign in to comment.