判断点在线段上

Posted IKnowYou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断点在线段上相关的知识,希望对你有一定的参考价值。

2016-11-0921:00:46

判断点p0是否在线段p1p2上
1.先判断p0,p1,p2三点共线
2.在判断点p0在以p1p2为对角线的矩形内。

#include <iostream>
#include <algorithm>
using namespace std;

const double inf = 1e-10;
struct point {
    double x, y;
};

struct v {
    point start, end;
};

bool onSegment(point p1, point p2, point p0) {
    if (fabs((p1.x - p2.x)*(p1.y - p0.y) - (p1.x - p0.x)*(p1.y - p2.y))<1e-10 &&
        min(p1.x, p2.y) <= p0.x&&max(p1.x, p1.x) >= p0.x&&
        min(p1.y, p2.y) <= p0.y&&max(p1.y, p2.y) >= p0.y
        )
        return true;
    return false;
}

int main() {
    point p1, p2, p3;
    while (cin >> p1.x >> p1.y >> p2.x >> p2.y >> p3.x >> p3.y) {
        cout << onSegment(p1, p2, p3) << endl;
    }
}

 

以上是关于判断点在线段上的主要内容,如果未能解决你的问题,请参考以下文章

POJ2398计算几何叉积判断点在线段左/右侧

POJ-2318 TOYS 计算几何 判断点在线段的位置

POJ 1584 A Round Peg in a Ground Hole 判断凸多边形 点到线段距离 点在多边形内

[POJ2398]Toy Storage(计算几何,二分,判断点在线段的哪一侧)

POJ - 1584 A Round Peg in a Ground Hole(判断凸多边形,点到线段距离,点在多边形内)

计算几何