Moved code above workspace HTML

This commit is contained in:
Sharwin24 2025-03-11 23:49:48 -05:00
parent f23bc959ef
commit b9396d75e5

View file

@ -25,9 +25,6 @@ The robot's forward and inverse kinematics were first implemented in a [jupyter
The forward and inverse kinematics were then implemented in C++ following the approach described on the Trossen Robotics forum [1]. Access to the kinematics lets us plan paths in the joint space significantly easier and safer since the workspace is irregular. Once a joint trajectory is planned, the path can be verified to stay in the workspace
<div id="workspace-container" style="display: flex; width: 95%; justify-content: center; ">
</div>
<div>
<details>
<summary>Forward and Inverse Kinematics C++ Implementation as ROS services</summary>
@ -142,6 +139,9 @@ The forward and inverse kinematics were then implemented in C++ following the ap
</details>
</div>
<div id="workspace-container" style="display: flex; width: 90%; justify-content: center; align-items: center;">
</div>
### The Jacobian
The Modern Robotics [2] textbook details the process of deriving the Jacobian for a delta robot. The Jacobian is useful for converting end effector velocities to joint velocities.