From eba2bdbbc671fcf31d15445eb336e7d42a17cc4b Mon Sep 17 00:00:00 2001 From: Sharwin24 Date: Tue, 25 Feb 2025 11:23:00 -0600 Subject: [PATCH] dropwdown for kinematics implementation --- content/posts/delta-robot/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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] } ``` - +