constraint_app
/home/jbrooksh/drc/software/perception/constraint_app/src/matlab_mex/MyTreeJntToJacSolver.hpp
Go to the documentation of this file.
00001 #ifndef MYTREEJNTTOJACSOLVER_HPP_
00002 #define MYTREEJNTTOJACSOLVER_HPP_
00003 
00004 #include <kdl/tree.hpp>
00005 #include <kdl/jacobian.hpp>
00006 #include <kdl/jntarray.hpp>
00007 
00008 class MyTreeJntToJacSolver {
00009 public:
00010   explicit MyTreeJntToJacSolver(const KDL::Tree& tree);
00011 
00012   virtual ~MyTreeJntToJacSolver();
00013 
00014   int JntToJac(const KDL::JntArray& q_in, KDL::Jacobian& jac,
00015                const std::string& segmentname);
00016 
00017 private:
00018   KDL::Tree tree;
00019   
00020 };
00021 
00022 #endif /* TREEJNTTOJACSOLVER_H_ */
 All Classes Files Functions Variables Typedefs