Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add method for setInterpolationMode #1012

Merged
merged 1 commit into from
Jun 21, 2016
Merged
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
8 changes: 8 additions & 0 deletions python/hrpsys_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1130,6 +1130,14 @@ def waitInterpolationOfGroup(self, gname):
'''
self.seq_svc.waitInterpolationOfGroup(gname)

def setInterpolationMode(self, mode):
'''!@brief
set interpolation mode.
@param i_mode_ new interpolation mode
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

取り得る値は何でしょうか.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@return true if set successfully, false otherwise
'''
return self.seq_svc.setInterpolationMode(mode)

def getJointAngles(self):
'''!@brief
Returns the commanded joint angle values.
Expand Down