• 求平行四边形的第四个点的坐标


    Given are the (x,y) coordinates of the endpoints of two adjacent sides of a parallelogram. Find the (x,y) coordinates of the fourth point.
    Input
    Each line of input contains eight floating point numbers: the (x,y) coordinates of one of the endpoints of the first side followed by the (x,y) coordinates of the other endpoint of the first side, followed by the (x,y) coordinates of one of the endpoints of the second side followed by the (x,y) coordinates of the other endpoint of the second side. All coordinates are in meters, to the nearest mm. All coordinates are between -10000 and +10000.
    Output
    For each line of input, print the (x,y) coordinates of the fourth point of the parallelogram in meters, to the nearest mm, separated by a single space.
    Sample Input
    0.000 0.000 0.000 1.000 0.000 1.000 1.000 1.000
    1.000 0.000 3.500 3.500 3.500 3.500 0.000 1.000
    1.866 0.000 3.127 3.543 3.127 3.543 1.412 3.145
    
    Sample Output
    1.000 0.000
    -2.500 -2.500
    0.151 -0.398
    
    题意 :给你平行四边形的相邻的两条边,让你求第四个点的坐标
    思路分析:一个比较基础的计算几何题,只要根据向量的矢量和相等即可求解
        相等的点的位置有 4 种情况,分别是 1 3、 1 4、 2 3、 2 4分别求即可
    代码示例 :

    struct point
    {
        double x, y;
        point(double _x=0, double _y=0):x(_x), y(_y){}
         
        // 点-点=向量
        point operator-(const point &v){
            return point(x-v.x, y-v.y);
        }
     
    };
     
    int dcmp(double x){
        if (fabs(x)<eps) return 0;
        else return x<0?-1:1;
    }
    bool operator == (const point &a, const point &b){
        return (dcmp(a.x-b.x)==0 && dcmp(a.y-b.y)==0);
    }
     
    typedef point Vector; // Vector表示向量
    
    point p[10];
    
    int main() {
        //freopen("in.txt", "r", stdin);
        //freopen("out.txt", "w", stdout);
        
        while(~scanf("%lf%lf", &p[1].x, &p[1].y)){
            for(int i = 2; i <= 4; i++) {
                scanf("%lf%lf", &p[i].x, &p[i].y);
            }
            
            if (p[2] == p[3]) {
                Vector v = p[4] - p[3];
                printf("%.3f %.3f
    ", v.x+p[1].x, v.y+p[1].y);
            }
            if (p[2] == p[4]){
                Vector v = p[3] - p[4];
                printf("%.3f %.3f
    ", v.x+p[1].x, v.y+p[1].y);
            }
            if (p[1] == p[3]){
                Vector v = p[4]-p[3];
                printf("%.3f %.3f
    ", v.x+p[2].x, v.y+p[2].y);
            }
            if (p[1] == p[4]){
                Vector v = p[3] - p[4];
                printf("%.3f %.3f
    ", v.x+p[2].x, v.y+p[2].y);
            }
        }
        return 0;
    }
    
    东北日出西边雨 道是无情却有情
  • 相关阅读:
    各IDE快捷键
    java的GUI之SWT框架 JavaFX框架 配置开发环境(包含但不限于WindowBuilder完整教程,解决Unknown GUI toolkit报错,解决导入SWT包错误)
    20180314 一个浮点数问题
    20180309 算最近新的感悟吧
    20171228 C#值类型和引用类型
    20171129 ASP.NET中使用Skin文件
    20171123初学demo爬去网页资料
    20171018 在小程序页面去获取用户的OpenID
    20171018 微信小程序客户端数据和服务器交互
    20171012 动态爬虫爬取预约挂号有号信息
  • 原文地址:https://www.cnblogs.com/ccut-ry/p/8995055.html
Copyright © 2020-2023  润新知