Skip to content

Commit 39605c6

Browse files
committed
Create Robot.h
第二次编程作业 学号:U201210751
1 parent 6a91d8c commit 39605c6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

U201210751/Robot.h

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#include<math.h>
2+
#include "Solver.h"
3+
class Robot
4+
{ public:
5+
double L1,L2;
6+
Frame JointFrame1,JointFrame2;
7+
Point AimPoint_WorldFrame;
8+
Solver solver;
9+
public:
10+
Robot(double =0,double =0);
11+
void PTPMove(Frame ,Point );// 给定坐标系和点,求关节角
12+
void PTPMove(Point ); //给定关节角,求关节3的世界坐标系
13+
14+
};

0 commit comments

Comments
 (0)