Skip to content

Commit

Permalink
[skinManager] fixed include issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alecive committed Jun 25, 2015
1 parent 3c8f293 commit dec0f0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
#include "iCub/skinDynLib/skinContact.h"
#include "iCub/skinDynLib/skinContactList.h"
#include "iCub/skinDynLib/rpcSkinManager.h"
#include "iCub/skinDynLib/common.h"

using namespace std;
using namespace yarp::os;
Expand Down
2 changes: 1 addition & 1 deletion src/modules/skinManager/src/compensator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ bool Compensator::setTaxelPosesFromFile(const char *filePath){
if (i<(int)taxelPos.size())
{
Vector taxelPosNrm(6,0.0);
taxelPosNrm = vectorFromBottle(*(calibration.get(i+1).asList()),0,6);
taxelPosNrm = iCub::skinDynLib::vectorFromBottle(*(calibration.get(i+1).asList()),0,6);
taxelPos[i] = taxelPosNrm.subVector(0,2);
taxelOri[i] = taxelPosNrm.subVector(3,5);
}
Expand Down

0 comments on commit dec0f0a

Please sign in to comment.