上一页 1 ··· 4 5 6 7 8
摘要: 1 #ifndef HEADER_PPOINT//头文件卫士 2 #define HEADER_PPOINT 3 class PPoint 4 { 5 double x,y;//直角坐标或极坐标 6 public: 7 PPoint(double ix,double iy);//设置坐标 8 double xOffset();//设置轴分量x 9 double yOffset();//设置y轴分量10 double angle();//极坐标弧角11 double radius();//极坐标半径12 };13 #end... 阅读全文
posted @ 2013-04-29 11:15 herizai 阅读(161) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8