MAGIKS
1.1
Manipulator General Inverse Kinematic Solver
|
Classes | |
class | Key_Point |
This class, introduces a structure for a key point in the multi-dimensional space. More... | |
class | Orientation_Path |
class | Orientation_Path_Polynomial |
class | Orientation_Trajectory |
class | Orientation_Trajectory_Polynomial |
class | Path |
This class contains properties and methods for a Trajectory Segment A trajectory is established of one segment or a number of segments connected together creating a path in the space. More... | |
class | Path_Plot_Settings |
class | Path_Polynomial |
class | Trajectory |
class | Trajectory_Polynomial |
Functions | |
def | feasible_position |
def | jerkbound_position_estimate |
def | accbound_position_estimate |
def | velbound_position_estimate |
def | finite_difference_estimate |
def | plot_list |
Variables | |
list | all_figures = ['Position', 'Velocity', 'Acceleration', 'Jerk'] |
list | all_ltypes = ['-','r--', 'bs', 'g^', 'bo', 'k'] |
list | all_colors |
dictionary | FDC_v |
dictionary | FDC_a |
def math_tools.geometry.trajectory.accbound_position_estimate | ( | xd, | |
x0, | |||
v0, | |||
a_max, | |||
dt | |||
) |
Definition at line 397 of file trajectory.py.
def math_tools.geometry.trajectory.feasible_position | ( | Xd, | |
X0, | |||
V0, | |||
X_min, | |||
X_max, | |||
v_max, | |||
a_max, | |||
dt, | |||
smooth = False |
|||
) |
Definition at line 76 of file trajectory.py.
def math_tools.geometry.trajectory.finite_difference_estimate | ( | x, | |
x_min, | |||
x_max, | |||
v_max, | |||
a_max, | |||
dt | |||
) |
Definition at line 430 of file trajectory.py.
def math_tools.geometry.trajectory.jerkbound_position_estimate | ( | xd, | |
x0, | |||
v0, | |||
a0, | |||
j_max, | |||
dt | |||
) |
Definition at line 377 of file trajectory.py.
def math_tools.geometry.trajectory.plot_list | ( | pathlist, | |
ncol = 1 , |
|||
show_limits = False , |
|||
show_plot = True |
|||
) |
Definition at line 500 of file trajectory.py.
def math_tools.geometry.trajectory.velbound_position_estimate | ( | xd, | |
x0, | |||
v0, | |||
v_max, | |||
dt | |||
) |
Definition at line 413 of file trajectory.py.
list all_colors |
Definition at line 40 of file trajectory.py.
list all_figures = ['Position', 'Velocity', 'Acceleration', 'Jerk'] |
Definition at line 38 of file trajectory.py.
list all_ltypes = ['-','r--', 'bs', 'g^', 'bo', 'k'] |
Definition at line 39 of file trajectory.py.
dictionary FDC_a |
Definition at line 69 of file trajectory.py.
dictionary FDC_v |
Definition at line 62 of file trajectory.py.