You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python program capable of Modeling any robotic arm virtually, Displaying modeled arm graphically, Simulating manipulation operations (FK) and Trajectory plotting, Computing solutions to reach the target (IK)
#Creates virtual model of robotic arm based on input characteristics given
#User to Instantiate this class for making arm models
#constructs arm using link() objects
#Functions:
* set_display_limits(<'x' or 'y' or 'z'>, [<upper, lower limit>])
* get_name()
* set_name()
* get_path_res()
* set_path_res()
* set_step_size([]) << for hill climbing (inverse kinematics)
* get_step_size() << for hill climbing (inverse kinematics)
* set_err_radius() << for hill climbing (inverse kinematics)
* get_err_radius() << for hill climbing (inverse kinematics)
* set_itr_limit() << for hill climbing (inverse kinematics)
* get_itr_limit() << for hill climbing (inverse kinematics)
About
Python program capable of Modeling any robotic arm virtually, Displaying modeled arm graphically, Simulating manipulation operations (FK) and Trajectory plotting, Computing solutions to reach the target (IK)