diff --git a/content/posts/delta-robot/index.md b/content/posts/delta-robot/index.md index 7c7cf0e..4705a5a 100644 --- a/content/posts/delta-robot/index.md +++ b/content/posts/delta-robot/index.md @@ -26,6 +26,9 @@ The robot's forward and inverse kinematics were first implemented in a jupyter n The forward and inverse kinematics were then implemented in C++ following the approach described on the Trossen Robotics forum [1]. +
+
+ Forward and Inverse Kinematics C++ Implementation ```cpp void DeltaKinematics::forwardKinematics(const std::shared_ptr request, std::shared_ptr response) { // Locally save the request data (joint angles) @@ -121,7 +124,7 @@ void DeltaKinematics::inverseKinematics(const std::shared_ptr response->joint_angles.theta3 = theta3; // [rad] } ``` - +