File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 217217def rodAngleToXYZ (ang ):
218218 """
219219 Calculates xyz coordinates of the rod end point given rotation ang in
220- radians measured clockwise positive from -y axis (refer to pictogram
221- of double pendulum system presented above).
220+ radians measured counterclockwise positive from -y axis (refer to the
221+ pictogram of double pendulum system presented above).
222222 """
223223 xyz = (ROD_LENGTH * sin (ang ), - ROD_LENGTH * cos (ang ), 0.0 )
224224 return xyz
Original file line number Diff line number Diff line change 203203def rodAngleToXYZ (ang ):
204204 """
205205 Calculates xyz coordinates of the rod end point given rotation ang in
206- radians measured clockwise positive from -y axis (refer to pictogram
207- of double pendulum system presented above).
206+ radians measured counterclockwise positive from -y axis (refer to the
207+ pictogram of double pendulum system presented above).
208208 """
209209 xyz = (ROD_LENGTH * sin (ang ), - ROD_LENGTH * cos (ang ), 0.0 )
210210 return xyz
You can’t perform that action at this time.
0 commit comments