Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
RussTedrake committed Oct 11, 2015
1 parent e1865db commit c158903
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drake/examples/Pendulum/runDynamics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ int main(int argc, char* argv[]) {
if(!lcm->good())
return 1;

DrakeSystemPtr p = allocate_shared<PendulumWithBotVis>(Eigen::AlignedAllocator<PendulumWithBotVis>(),lcm);
DrakeSystemPtr p = allocate_shared<PendulumWithBotVis>(Eigen::aligned_allocator<PendulumWithBotVis>(),lcm);
runLCM(p,*lcm,0,50,p->getRandomState());

cout << "output frame: " << p->getOutputFrame() << endl;
Expand Down
2 changes: 1 addition & 1 deletion drake/examples/Pendulum/runLQR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ int main(int argc, char* argv[]) {
if(!lcm->good())
return 1;

std::shared_ptr<PendulumWithBotVis> pendulum = allocate_shared<PendulumWithBotVis>(Eigen::AlignedAllocator<PendulumWithBotVis>(),lcm);
std::shared_ptr<PendulumWithBotVis> pendulum = allocate_shared<PendulumWithBotVis>(Eigen::aligned_allocator<PendulumWithBotVis>(),lcm);
DrakeSystemPtr controller = pendulum->balanceLQR();

DrakeSystemPtr sys = feedback(pendulum,controller);
Expand Down

0 comments on commit c158903

Please sign in to comment.