KrisLibrary  1.0.0
DenavitHartenberg.h
1 #ifndef DENAVIT_HARTENBERG_H
2 #define DENAVIT_HARTENBERG_H
3 
4 #include "RobotKinematics3D.h"
5 
7 Math3D::RigidTransform DenavitHartenbergTransform(Real alpha,Real a,Real d,Real theta=0);
8 
10 void DenavitHartenbergRobotSetup(const std::vector<Real>& alpha,const std::vector<Real>& a,const std::vector<Real>& d,const std::vector<Real>& theta,RobotKinematics3D& robot);
11 
12 
13 #endif
A rigid-body transformation.
Definition: math3d/primitives.h:820
Class defining kinematics of a robot, and commonly used functions.
Definition: RobotKinematics3D.h:33