Skip to content

Commit da579dc

Browse files
committed
Remove old non-implemented methods
1 parent 55ce318 commit da579dc

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Unreleased
3030
**Removed**
3131

3232
* Removed ``compas_fab.sensors.baumer.PosConCM.get_live_monitor_data()``
33+
* Removed non-implemented methods from ``compas_fab.robots.Robot``: ``send_frame``, ``send_configuration``, ``send_trajectory``
3334

3435
0.6.0
3536
----------

src/compas_fab/robots/robot.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,21 +1176,6 @@ def plan_motion(self, goal_constraints, start_configuration=None,
11761176

11771177
return trajectory
11781178

1179-
def send_frame(self):
1180-
# (check service name with ros)
1181-
self.ensure_client()
1182-
raise NotImplementedError
1183-
1184-
def send_configuration(self):
1185-
# (check service name with ros)
1186-
self.ensure_client()
1187-
raise NotImplementedError
1188-
1189-
def send_trajectory(self):
1190-
# (check service name with ros)
1191-
self.ensure_client()
1192-
raise NotImplementedError
1193-
11941179
def transformed_frames(self, configuration, group=None):
11951180
"""Returns the robot's transformed frames."""
11961181
joint_names = self.get_configurable_joint_names(group)

0 commit comments

Comments
 (0)