GCOP  1.0
arm.h
Go to the documentation of this file.
00001 #ifndef GCOP_ARM_H
00002 #define GCOP_ARM_H
00003 
00004 namespace gcop {
00005 
00011   class Arm {
00012   public:
00013     Arm();
00014 
00015     virtual ~Arm();
00016 
00022     bool Fk(double p[3], const double a[3]);
00023 
00029     bool Ik(double a[2][3], const double p[3]);
00030 
00031     double l1;  
00032     double l2;  
00033     double x1;  
00034     
00035 
00036   };
00037 }
00038 
00039 #endif
00040