Skip to content

Commit 14733fe

Browse files
committed
update new lines
1 parent daac0e6 commit 14733fe

File tree

3 files changed

+6
-18
lines changed

3 files changed

+6
-18
lines changed

underautomation/universal_robots/common/pose.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ def try_parse(value: str, pose: 'Pose') -> bool:
2222
return pose.TryParse(value, pose._instance)
2323
def from_rotation_vector_to_quaternion(self, x: float, y: float, z: float, w: float) -> None:
2424
self._instance.FromRotationVectorToQuaternion(x, y, z, w)
25+
def from_rpy_to4x4_matrix(self) -> typing.List[float]:
26+
return self._instance.FromRPYTo4x4Matrix()
27+
def from_rotation_vector_to4x4_matrix(self) -> typing.List[float]:
28+
return self._instance.FromRotationVectorTo4x4Matrix()
2529
@staticmethod
2630
def from_quaternion_to_rotation_vector(x: float, y: float, z: float, w: float) -> 'Pose':
2731
return Pose(None, None, None, None, None, None, pose.FromQuaternionToRotationVector(x, y, z, w))

underautomation/universal_robots/rtde/internal/rtde_client_parameters_base.py

Lines changed: 0 additions & 18 deletions
This file was deleted.

underautomation/universal_robots/ssh/internal/sftp_client_base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ def list_directory(self, path: str, listCallback: typing.Any=None) -> typing.Lis
3535
return [SftpFile(x) for x in self._instance.ListDirectory(path, listCallback)]
3636
def enumerate_programs(self) -> typing.List[str]:
3737
return self._instance.EnumeratePrograms()
38+
def enumerate_installations(self) -> typing.List[str]:
39+
return self._instance.EnumerateInstallations()
3840
def begin_list_directory(self, path: str, asyncCallback: typing.Any, state: typing.Any, listCallback: typing.Any=None) -> typing.Any:
3941
return self._instance.BeginListDirectory(path, asyncCallback, state, listCallback)
4042
def end_list_directory(self, asyncResult: typing.Any) -> typing.List[SftpFile]:

0 commit comments

Comments
 (0)