作业要求: http://www.cnblogs.com/bingc/p/4919692.html

代码(未使用Eigen):

 #include <iostream>
 #include <Eigen/Dense>
 using namespace Eigen;
 using Eigen::MatrixXd;
 using namespace std;
 class POINT
 {
 public:
     string name;
     double x, y;

 };
 class LINE
 {
 public:
     string name;
     POINT p_start,p_end;
 };
 class TRIANGLE
 {
 public:
     string name;
     POINT p1,p2, p3;
 };
 void rotate(POINT *pt, double angle);
 int main()
 {    string name,cmd,name1;
     int num;
     , l = , t = ;
     ;
     POINT point[maxnum];
     LINE line[maxnum];
     TRIANGLE triangle[maxnum];
     int flag;
     char a, b, c;
     double x, y, angle;
     )
     {
         cout << "存点、线、三角形,请输入0,操作点、线、三角形请输入1" << endl;
         cin >> flag;
         switch (flag)
         {
         :{
             cout << "请输入图形名称 点数 坐标" << endl;
             cin >> name;
             cin >> num;
             switch (num)
             {
             :
             {
                 if (p >= maxnum) { cout << "您的点的个数已达上限,不能再存!" << endl; break; }
                 point[p].name = name;
                 cin >> a >> point[p].x >> b >> point[p].y >> c;
                 p++;
                 break;
             }
             :
             {
                 if (l >= maxnum) { cout << "您的线的个数已达上限,不能再存!" << endl; break; }
                 line[l].name = name;
                 cin >> a >> line[l].p_start.x >> b >> line[l].p_start.y >> c >> a >> line[l].p_end.x >> b >> line[l].p_end.y >> c;
                 l++;
                 break;
             }
             :
             {
                 if (t >= maxnum) { cout << "您的三角形的个数已达上限,不能再存!" << endl; break; }
                 triangle[t].name = name;
                 cin >> a >> triangle[t].p1.x >> b >> triangle[t].p1.y >> c >> a >> triangle[t].p2.x >> b >> triangle[t].p2.y >> c >> a >> triangle[t].p3.x >> b >> triangle[t].p3.y >> c;
                 t++;
                 break;
             }
             default: {cout << "点数输入错误" << endl; break; }
             }
             break;
         }
         :{
             cout << "请输入操作指令" << endl;
             cin >> cmd;
             cin>> name1;
             if (cmd == "move")
             {
                 cin >> a >> x >> b >> y >> c;
                 ; i < p; i++)
                 {
                     if (name1 == point[i].name)
                     {
                         point[i].x += x;
                         point[i].y += y;
                         cout << "平移后的点为" << "(" << point[i].x << "," << point[i].y << ")" << endl;
                     }
                 }
                 ; i < l; i++)
                 {
                     if (name1 == line[i].name)
                     {
                         line[i].p_start.x += x;
                         line[i].p_start.y += y;
                         line[i].p_end.x += x;
                         line[i].p_end.y += y;
                         cout << "平移后的线段端点为" << "(" << line[i].p_start.x << "," << line[i].p_start.y << ")" << "、(" << line[i].p_end.x << "," << line[i].p_end.y << ")" << endl;
                     }
                 }
                 ; i < t; i++)
                 {
                     if (name1 == triangle[i].name)
                     {
                         triangle[i].p1.x += x;
                         triangle[i].p1.y += y;
                         triangle[i].p2.x += x;
                         triangle[i].p2.y += y;
                         triangle[i].p3.x += x;
                         triangle[i].p3.y += y;
                         cout << "平移后的三角形顶点为为" << "(" << triangle[i].p1.x << "," << triangle[i].p1.y << ")" << "、(" << triangle[i].p2.x << "," << triangle[i].p2.y << ")" << "、(" << triangle[i].p3.x << "," << triangle[i].p3.y << ")" << endl;
                     }
                 }
             }
             else if (cmd == "rotate")
             {
                 cin >> angle;
                 ; i < p; i++)
                 {
                     if (name1 == point[i].name)
                     {
                         rotate(&point[i], angle);
                         cout << "旋转后的点为" << "(" << point[i].x << "," << point[i].y << ")" << endl;
                     }
                 }
                 ; i < l; i++)
                 {
                     if (name1 == line[i].name)
                     {
                         rotate(&line[i].p_start, angle);
                         rotate(&line[i].p_end, angle);
                         cout << "旋转后的直线端点为" << "(" << line[i].p_start.x << "," << line[i].p_start.y << ")" << "、(" << line[i].p_end.x << "," << line[i].p_end.y << ")" << endl;
                     }
                 }
                 ; i < t; i++)
                 {
                     if (name1 == triangle[i].name)
                     {
                         rotate(&triangle[i].p1, angle);
                         rotate(&triangle[i].p2, angle);
                         rotate(&triangle[i].p3, angle);
                         cout << "旋转后的三角形顶点为为" << "(" << triangle[i].p1.x << "," << triangle[i].p1.y << ")" << "、(" << triangle[i].p2.x << "," << triangle[i].p2.y << ")" << "、(" << triangle[i].p3.x << "," << triangle[i].p3.y << ")" << endl;
                     }
                 }
             }
             else cout << "comand is error!" << endl;
             break;
         }
         default:{cout << "输入错误!" << endl; break; }

         }
     }

     ;
 }

 void rotate(POINT *pt, double angle)  //逆时针为正
 {
     double x, y,ang;
     x = pt->x;
     y = pt->y;
     ang = angle*;
     pt->x = x*cos(ang) - y*sin(ang);
     pt->y = x*sin(ang) + y*cos(ang);
 }

运行结果:

Code for the Homework1的更多相关文章

  1. Code for the Homework1 改进

    #include <iostream> #include <vector> #include "shape.h" //using namespace std ...

  2. python code 1_username registration & login

    This tiny program consists of 2 parts - registration and login. In the part of registration, the key ...

  3. Visual Studio Code 代理设置

    Visual Studio Code (简称 VS Code)是由微软研发的一款免费.开源的跨平台文本(代码)编辑器,在十多年的编程经历中,我使用过非常多的的代码编辑器(包括 IDE),例如 Fron ...

  4. 我们是怎么做Code Review的

    前几天看了<Code Review 程序员的寄望与哀伤>,想到我们团队开展Code Review也有2年了,结果还算比较满意,有些经验应该可以和大家一起分享.探讨.我们为什么要推行Code ...

  5. Code Review 程序员的寄望与哀伤

    一个程序员,他写完了代码,在测试环境通过了测试,然后他把它发布到了线上生产环境,但很快就发现在生产环境上出了问题,有潜在的 bug. 事后分析,是生产环境的一些微妙差异,使得这种 bug 场景在线下测 ...

  6. 从Script到Code Blocks、Code Behind到MVC、MVP、MVVM

    刚过去的周五(3-14)例行地主持了技术会议,主题正好是<UI层的设计模式——从Script.Code Behind到MVC.MVP.MVVM>,是前一天晚上才定的,中午花了半小时准备了下 ...

  7. 在Visual Studio Code中配置GO开发环境

    一.GO语言安装 详情查看:GO语言下载.安装.配置 二.GoLang插件介绍 对于Visual Studio Code开发工具,有一款优秀的GoLang插件,它的主页为:https://github ...

  8. 代码的坏味道(14)——重复代码(Duplicate Code)

    坏味道--重复代码(Duplicate Code) 重复代码堪称为代码坏味道之首.消除重复代码总是有利无害的. 特征 两个代码片段看上去几乎一样. 问题原因 重复代码通常发生在多个程序员同时在同一程序 ...

  9. http status code

    属于转载 http status code:200:成功,服务器已成功处理了请求,通常这表示服务器提供了请求的网页 404:未找到,服务器未找到 201-206都表示服务器成功处理了请求的状态代码,说 ...

随机推荐

  1. saltstack实战4--综合练习1

    规范配置管理 实际工作中可能会有现网环境,基线环境,开发环境. 需要使用saltstack统一管理.机器多了,业务多了,可能配置文件存放的会比较乱,因此可以统一管理起来 我们可以再加2个目录,test ...

  2. Ehcache(2.9.x) - API Developer Guide, Basic Caching

    Creating a CacheManager All usages of the Ehcache API start with the creation of a CacheManager. The ...

  3. 晒下自己App广告平台积分墙收入,顺便点评几个广告平台

    这是我之前发在爱开发App源码论坛的文章.分享了我从2011年到现在移动广告方面的收入和一些心得. 产品类型:FC.街机模拟器类App游戏 广告平台:万普世纪 广告形式:积分墙,用户先试玩几次,再玩需 ...

  4. 检测SqlServer服务器CPU是否瓶颈

    初次写博文,分享个人心得,欢迎大虾小虾来拍砖. 系统自带的性能监视器 在开始命令框中输入perfmon按enter键即可打开性能监视器 可以通过监视 % Processor Time 的值察看cpu是 ...

  5. Dreamweaver标签库

    .highlight .hll { background-color: #ffffcc } .highlight { background: #ffffff } .highlight .c { col ...

  6. ASP.NET实现在线人员实时显示

    在最近的学习中,参考其他资源,做了一个简单的在线人员显示的功能,总结了一下,思路如下: 1.定义一个全局的内存来作为在线人员列表 2.通过实时判断用户Session值,来判断某个用户的登录或离线 3. ...

  7. 利用js来实现一些常用的算法

    示例代码中的arr指的是给出的数组,s指的是数组的起始坐标0,end指的是数组的最后一个坐标arr.length-1,n指的是要查找的数字 查找某个值: 1.线性法 function findInAr ...

  8. 小技巧:SystemTray中进行操作提示

    SystemTray中进行操作提示在wp中应用比较广泛,截图如下. 实现方法也十分简单 1.xaml代码中写入: shell:SystemTray.IsVisible="True" ...

  9. 韩顺平细说Servlet视频系列之tom相关内容

    韩顺平细说Servlet视频系列之tom相关内容 tomcat部署项目操作(注意:6.0版本以后的支持该操作,5.x版本需要另外配置?待验证!) 项目发布到tomcat的webapps文件下,然后启动 ...

  10. 按照自己的理解实现比特交换协议(alternating-bit protocol)

    一开始的思路是想写两个程序的,发送端和接收端.但是后来想了下,因为是模拟的,所以不用这么麻烦,直接自己定制场景(比如说丢包阿,包出错阿,超时之类的). 基本上是根据上图所写的,一个函数发包,一个函数接 ...