Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bindings/yarp.i
Original file line number Diff line number Diff line change
Expand Up @@ -1136,8 +1136,8 @@ MAKE_COMMS (Sound, yarp::sig::Sound)
}

%extend yarp::dev::IControlLimits {
bool getLimits(int axis, std::vector<double>& min, std::vector<double>& max) {
return self->getLimits(axis, &min[0], &max[0]);
bool getPosLimits(int axis, std::vector<double>& min, std::vector<double>& max) {
return self->getPosLimits(axis, &min[0], &max[0]);
}

bool getVelLimits(int axis, std::vector<double>& min, std::vector<double>& max) {
Expand Down
Loading
Loading