如何判定多边形是顺时针还是逆时针

摘要:
需要注意的是在屏幕坐标中,Y是向下的,所以在屏幕坐标系中看到的顺时针既是在Y轴向上的直角坐标系中看到的逆时针方向。

1、关于如何判定多边形是顺时针还是逆时针对于凸多边形而言,只需对某一个点计算cross product = ((xi - xi-1),(yi - yi-1)) x ((xi+1 - xi),(yi+1 - yi))
= (xi - xi-1) * (yi+1 - yi) - (yi - yi-1) * (xi+1 - xi)

如果上式的值为正,逆时针;为负则是顺时针

而对于一般的简单多边形,则需对于多边形的每一个点计算上述值,如果正值比较多,是逆时针;负值较多则为顺时针。

2、还有一种说明是取多边形的极点值,多边形的方向和这个顶点与其相邻两边构成的方向相同。

需要注意的是在屏幕坐标中,Y是向下的,所以在屏幕坐标系中看到的顺时针既是在Y轴向上的直角坐标系中看到的逆时针方向。

以下是原文:
http://debian.fmi.uni-sofia.bg/~sergei/cgsr/docs/clockwise.htm

Determining whether or not a polygon (2D) has its vertices ordered clockwise or counterclockwise

Written byPaul Bourke
March 1998

The following describes a method for determining whether or not a polygon has its vertices ordered clockwise or anticlockwise. As a consequence the test can also be used to determine whether or not a polygon is concave or convex. A polygon will be assumed to be described by N vertices, ordered

(x0,y0), (x1,y1), (x2,y2), . . . (xn-1,yn-1)

A convenient definition of clockwise is based on considerations of the cross product between adjacent edges. If the crossproduct is positive then it rises above the plane (z axis up out of the plane) and if negative then the cross product is into the plane.

cross product = ((xi- xi-1),(yi- yi-1))x((xi+1- xi),(yi+1- yi))

= (xi- xi-1) * (yi+1- yi) - (yi- yi-1) * (xi+1- xi)

If the polygon is known to be convex then one only has to consider the cross product between any two adjacent edges. A positive cross product means we have a counterclockwise polygon. There are some tests that may need to be done if the polygons may not be "clean". In particular two vertices must not be coincident and two edges must not be colinear.

For the more general case where the polygons may be convex, it is necessary to consider the sign of the cross product between adjacent edges as one moves around the polygon. If there are more positive cross products then the overall polygon is ordered counterclockwise. There are pathological cases to consider here as well, all the edges cannot be colinear, there must be at least 3 vertices, the polygon must be simple, that is, it cannot intersect itself or have holes.

如何判定多边形是顺时针还是逆时针第1张

A similar argument to the above can be used to determine whether a polygon is concave or convex. For a convex polygon all the cross products of adjacent edges will be the same sign, a concave polygon will have a mixture of cross product signs.

Test for concave/convex polygon

如何判定多边形是顺时针还是逆时针第2张

Source Code

Example and test programfor testing whether a polygon is ordered clockwise or counterclockwise. For MICROSOFT WINDOWS, contributed byG. Adam Stanislav.

C function byPaul Bourke

/*

Return the clockwise status of a curve, clockwise or counterclockwise

n vertices making up curve p

return 0 for incomputables eg: colinear points

CLOCKWISE == 1

COUNTERCLOCKWISE == -1

It is assumed that

- the polygon is closed

- the last point is not repeated.

- the polygon is simple (does not intersect itself or have holes)

*/

int ClockWise(XY *p,int n)

{

int i,j,k;

int count = 0;

double z;

if (n < 3)

return(0);

for (i=0;i<n;i++) {

j = (i + 1) % n;

k = (i + 2) % n;

z = (p[j].x - p[i].x) * (p[k].y - p[j].y);

z -= (p[j].y - p[i].y) * (p[k].x - p[j].x);

if (z < 0)

count--;

else if (z > 0)

count++;

}

if (count > 0)

return(COUNTERCLOCKWISE);

else if (count < 0)

return(CLOCKWISE);

else

return(0);

}

Example and test programfor testing whether a polygon is convex or concave. For MICROSOFT WINDOWS, contributed byG. Adam Stanislav.

/*

Return whether a polygon in 2D is concave or convex

return 0 for incomputables eg: colinear points

CONVEX == 1

CONCAVE == -1

It is assumed that the polygon is simple

(does not intersect itself or have holes)

*/

int Convex(XY *p,int n)

{

int i,j,k;

int flag = 0;

double z;

if (n < 3)

return(0);

for (i=0;i<n;i++) {

j = (i + 1) % n;

k = (i + 2) % n;

z = (p[j].x - p[i].x) * (p[k].y - p[j].y);

z -= (p[j].y - p[i].y) * (p[k].x - p[j].x);

if (z < 0)

flag |= 1;

else if (z > 0)

flag |= 2;

if (flag == 3)

return(CONCAVE);

}

if (flag != 0)

return(CONVEX);

else

return(0);

}

免责声明:文章转载自《如何判定多边形是顺时针还是逆时针》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇四、ABP 学习系列按此格式写你的distributionUrl,可以直接用本地的gradle包下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

随便看看

centos关闭开机自启项

centos关闭开机自启项先来查看默认情况下Linux系统开启的服务有哪些,由于我们工作在文本模式3级别,因此只需要查找3级别上开启的服务即可。查看命令如下:[root@www~]#LANG=en 先调整成英文字符集,以方便下面命令过滤中文字符串[root@www~]#chkconfig--list|grep3:on可以看到,默认情况下开启了很多服务,我们需...

canvas基础绘制矩形(1)

1.画布基础知识画布元素是HTML5中添加的一个重要元素,专门用于绘制图形。然而,画布本身不具备绘制图形的能力。将画布元素放置在页面上相当于在页面上放置矩形“画布”。我们可以使用js脚本在“画布”上绘制图形。...

基于智能网卡(Smart Nic)的Open vSwitch卸载方案简介

SmartNic技术的初衷是以比普通CPU低得多的成本支持各种虚拟化功能,如sriov、overlay/decap和卸载一些vSwitch处理逻辑。目前,业界还没有完美的SmartNic解决方案来解决传统的vSwitch性能瓶颈,每种解决方案的实施方式也各不相同。没有统一的解决方案。图1.不同SmartNic架构的比较。2.基于SmartNic的OVS卸载方...

Element plus的tree组件实现单选和搜索功能

--elementplus树组件实现单选及搜索功能--˃Elementplus树组件实现单选及搜索功能获取选中的节点//给节点添加classconstcustomNodeClass==˃{if{return'no-checkbox-node';}returnnull;};exportdefault{name:'tree-radio',data(){retur...

登陆脚本

#!' num_ count+=1其他:lock_ input(用户名)#############1##########_###!...

svn文件冲突,树冲突详解

文件冲突当两名或更多开发人员修改了同一个文件中相邻或相同的行时就会发生文件冲突。这个操作会出现一个对话框,列出文件夹下所有有冲突的文件,你可以选择将哪些标记成已解决。因此即使它是树冲突的一部分,却既不能显示冲突的叠加图标也不能通过右键单击来解决冲突。在此案例中,使用冲突编辑对话框中的删除按钮进行清理并将冲突标记为已解决。Foo.c被标记为删除并且产生一个树冲...