Skip to content
This repository has been archived by the owner on Dec 2, 2021. It is now read-only.

docs - fix some typos, etc in the comments. #10

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions IK_debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ def __init__(self,comb):
## End your code input for forward kinematics here!
########################################################################################

## For error analysis please set the following variables of your WC location and EE location in the format of [x,y,z]
## For error analysis please set the following variables to your WC location and EE location in the format of [x,y,z]
your_wc = [1,1,1] # <--- Load your calculated WC values in this array
your_ee = [1,1,1] # <--- Load your calculated end effector value from your forward kinematics
your_ee = [1,1,1] # <--- Load your calculated end effector values from your forward kinematics
########################################################################################

## Error analysis
Expand Down Expand Up @@ -116,7 +116,7 @@ def __init__(self,comb):
print ("Theta 5 error is: %04.8f" % t_5_e)
print ("Theta 6 error is: %04.8f" % t_6_e)
print ("\n**These theta errors may not be a correct representation of your code, due to the fact \
\nthat the arm can have muliple positions. It is best to add your forward kinmeatics to \
\nthat the arm can have multiple positions. It is best to add your forward kinematics to \
\nconfirm whether your code is working or not**")
print (" ")

Expand Down