polyorient:多边形的方向-matlab开发

时间:2024-06-21 13:43:59
【文件属性】:

文件名称:polyorient:多边形的方向-matlab开发

文件大小:1KB

文件格式:ZIP

更新时间:2024-06-21 13:43:59

matlab

返回 2D 多边形的方向和带符号区域 句法: [ORIENT,SAREA] = POLYORIENT(X,Y) 输入: 具有多边形顶点的 X, Y 向量 输出: ORIENT 多边形方向。 如果方向是逆时针(直接),则为 1,否则为 0 SAREA 多边形的有符号区域,如果方向不是直接则为负 例子: x1 = [0 0 1 1]; y1 = [1 2 2 1]; x2 = [0 0 1 1]; y2 = [1 0 0 1]; x3 = [x1 x2]; y3 = [y1 y2]; [o1,a1] = polyorient(x1,y1) % 0, -1 [o2,a2] = polyorient(x2,y2) % 1, 1 [o3,a3] = polyorient(x3,y3) % 0, 0


【文件预览】:
polyorient.zip

网友评论