We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7461c00 commit 356aef6Copy full SHA for 356aef6
planning/freespace_planning_algorithms/scripts/example/example.py
@@ -63,12 +63,12 @@
63
goal_pose.position.y = 0.0
64
65
yaw = 0
66
-quaterinon = Quaternion(axis=[0, 0, 1], angle=yaw)
+quaternion = Quaternion(axis=[0, 0, 1], angle=yaw)
67
68
-goal_pose.orientation.w = quaterinon.w
69
-goal_pose.orientation.x = quaterinon.x
70
-goal_pose.orientation.y = quaterinon.y
71
-goal_pose.orientation.z = quaterinon.z
+goal_pose.orientation.w = quaternion.w
+goal_pose.orientation.x = quaternion.x
+goal_pose.orientation.y = quaternion.y
+goal_pose.orientation.z = quaternion.z
72
73
74
# -- Search --
0 commit comments