問題描述
我有一個凸多邊形(通常只是一個旋轉的正方形),我知道所有 4 個點.如何確定給定點(黃色/綠色)是否在多邊形內部?
I have a convex polygon (typically just a rotated square), and I know all of 4 points. How do I determine if a given point (yellow/green) is inside the polygon?
對于這個特定項目,我無權訪問 JDK 的所有庫,例如 AWT.
For this particular project, I don't have access to all of the libraries of the JDK, such as AWT.
推薦答案
本頁:http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html 展示了如何做這適用于任何多邊形.
This page: http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html shows how to do this for any polygon.
我有一個 Java 實現,但它太大了,無法在此處完整發布.但是,您應該能夠解決:
I have a Java implementation of this, but it is too big to post here in its entirety. However, you should be able to work it out:
class Boundary {
private final Point[] points; // Points making up the boundary
...
/**
* Return true if the given point is contained inside the boundary.
* See: http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html
* @param test The point to check
* @return true if the point is inside the boundary, false otherwise
*
*/
public boolean contains(Point test) {
int i;
int j;
boolean result = false;
for (i = 0, j = points.length - 1; i < points.length; j = i++) {
if ((points[i].y > test.y) != (points[j].y > test.y) &&
(test.x < (points[j].x - points[i].x) * (test.y - points[i].y) / (points[j].y-points[i].y) + points[i].x)) {
result = !result;
}
}
return result;
}
}
這是 Point 類的草圖
And here is a sketch of the Point class
/**
* Two dimensional cartesian point.
*/
public class Point {
public final double x;
public final double y;
...
}
這篇關于如何確定一個點是否在二維凸多邊形內?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!