@@ -178,7 +178,7 @@ def get_end_effector_frame(self, group=None, full_configuration=None):
178178 The name of the group. Defaults to `None`.
179179 full_configuration : :class:`Configuration`, optional
180180 The robot's full configuration, i.e. values for all configurable
181- joints of the entire robot cell . Defaults to the all-zero configuration.
181+ joints of the entire robot. Defaults to the all-zero configuration.
182182
183183 Returns
184184 -------
@@ -241,7 +241,7 @@ def get_base_frame(self, group=None, full_configuration=None):
241241 The name of the group. Defaults to `None`.
242242 full_configuration : :class:`Configuration`, optional
243243 The robot's full configuration, i.e. values for all configurable
244- joints of the entire robot cell . Defaults to the all-zero configuration.
244+ joints of the entire robot. Defaults to the all-zero configuration.
245245
246246 Returns
247247 -------
@@ -487,7 +487,7 @@ def _check_full_configuration(self, full_configuration=None):
487487 Parameters
488488 ----------
489489 full_configuration : :class:`compas_fab.robots.Configuration`, optional
490- The full configuration of the whole robot cell , including values for all configurable joints.
490+ The full configuration of the whole robot, including values for all configurable joints.
491491
492492 Returns
493493 -------
@@ -498,7 +498,7 @@ def _check_full_configuration(self, full_configuration=None):
498498 if full_configuration :
499499 # full_configuration might have passive joints specified as well, we allow this.
500500 if len (joint_names ) > len (full_configuration .values ):
501- raise ValueError ("Please pass a configuration with {} values, for all configurable joints of the robot cell ." .format (len (joint_names )))
501+ raise ValueError ("Please pass a configuration with {} values, for all configurable joints of the robot." .format (len (joint_names )))
502502 configuration = full_configuration .copy ()
503503 if not len (configuration .joint_names ):
504504 configuration .joint_names = joint_names
@@ -1063,8 +1063,8 @@ def plan_cartesian_motion(self, frames_WCF, start_configuration=None,
10631063 The frames through which the path is defined.
10641064 start_configuration: :class:`Configuration`, optional
10651065 The robot's full configuration, i.e. values for all configurable
1066- joints of the entire robot cell , at the starting position. Defaults
1067- to the all-zero configuration.
1066+ joints of the entire robot, at the starting position. Defaults to
1067+ the all-zero configuration.
10681068 max_step: float
10691069 The approximate distance between the calculated points. (Defined in
10701070 the robot's units)
@@ -1111,7 +1111,7 @@ def plan_cartesian_motion(self, frames_WCF, start_configuration=None,
11111111 group = self .main_group_name # ensure semantics
11121112
11131113 # NOTE: start_configuration has to be a full robot configuration, such
1114- # that all configurable joints of the whole robot cell are defined for planning.
1114+ # that all configurable joints of the whole robot are defined for planning.
11151115 start_configuration = self ._check_full_configuration (start_configuration )
11161116 start_configuration_scaled = start_configuration .scaled (1. / self .scale_factor )
11171117
@@ -1174,8 +1174,8 @@ def plan_motion(self, goal_constraints, start_configuration=None,
11741174 the end-effector) is required to move to.
11751175 start_configuration: :class:`compas_fab.robots.Configuration`, optional
11761176 The robot's full configuration, i.e. values for all configurable
1177- joints of the entire robot cell , at the starting position. Defaults
1178- to the all-zero configuration.
1177+ joints of the entire robot, at the starting position. Defaults to
1178+ the all-zero configuration.
11791179 group: str, optional
11801180 The name of the group to plan for. Defaults to the robot's main
11811181 planning group.
@@ -1243,7 +1243,7 @@ def plan_motion(self, goal_constraints, start_configuration=None,
12431243 group = self .main_group_name # ensure semantics
12441244
12451245 # NOTE: start_configuration has to be a full robot configuration, such
1246- # that all configurable joints of the whole robot cell are defined for planning.
1246+ # that all configurable joints of the whole robot are defined for planning.
12471247 start_configuration = self ._check_full_configuration (start_configuration )
12481248
12491249 goal_constraints_WCF_scaled = []
0 commit comments