Polygon Clipper(基于 gpc-library)用于对两个多边形执行代数运算。 给定两个任意多边形(可能自相交,可能包含Kong洞,可能由多个轮廓构成),Polygon Clipper 用于计算 diff、union、AND、XOR 运算的结果多边形。 所有多边形都指定为结构,如 example.m 文件中所述。 gpc-library 归功于 Alan Murta (s. ReadMe.txt)。
2021-12-02 11:59:42 39KB matlab
1
Applying Meta-Heuristic Algorithms to the Nesting Problem Utilising the No Fit Polygon
2021-11-25 10:19:07 1.06MB NFP nesting
1
多边形点 确定点是否在多边形内部。 该模块基于从查询点投射半无限射线并计算交叉点。 如果您需要一个数值健壮的解决方案并愿意为此牺牲一些性能,请使用 。 例子 var pointInPolygon = require ( 'point-in-polygon' ) ; var polygon = [ [ 1 , 1 ] , [ 1 , 2 ] , [ 2 , 2 ] , [ 2 , 1 ] ] ; console . log ( pointInPolygon ( [ 1.5 , 1.5 ] , polygon ) ) ; // true console . log ( pointInPolygon ( [ 4.9 , 1.2 ] , polygon ) ) ; // false console . log ( pointInPolygon ( [ 1.8 , 1.1 ] , polygon
2021-11-17 05:23:37 6KB JavaScript
1
General Polygon Clipper librar.如果出现引用失败的问题,请重新生成dll。
2021-11-10 23:08:54 147KB GPC General Poly
1
多边形裁剪 对您的Polygons&MultiPolygons应用boolean Polygon裁剪操作( intersection , union , difference , xor )。 快速开始 const polygonClipping = require ( 'polygon-clipping' ) const poly1 = [ [ [ 0 , 0 ] , [ 2 , 0 ] , [ 0 , 2 ] , [ 0 , 0 ] ] ] const poly2 = [ [ [ - 1 , 0 ] , [ 1 , 0 ] , [ 0 , 1 ] , [ - 1 , 0 ] ] ] polygonClipping . union ( poly1 , poly2 /* , poly3, ... */ ) polygonClipping . intersection ( pol
2021-11-10 22:43:32 2.3MB polygon union intersection polygon-clipping
1
Polygon Mesh Processing 2010
2021-11-01 18:03:03 23.62MB
1
180种多边形特效效果,仅供学习,切勿商用资源推荐
2021-10-27 20:05:25 7.3MB unity 特效 资源 多边形
1
polygon_coverage_planning 该程序包包含一些实现,以计算带有Kong的常规多边形中的覆盖率模式和最短路径。 使用时请引用我们。 Bähnemann, Rik, et al. "Revisiting boustrophedon coverage path planning as a generalized traveling salesman problem." Field and Service Robotics. Springer, Singapore, 2021. : 在Ubuntu 18.04和ROS旋律上安装 安装。 安装 。 创建一个工作区。 cd ~ mkdir -p catkin_ws/src cd catkin_ws catkin init catkin config --cmake-args -DCMAKE_BUILD_TYPE=
2021-10-26 19:56:45 470KB C++
1
d3-地多边形 球形多边形的剪切和几何运算。 正在安装 如果使用NPM,则npm install d3-geo-polygon 。 否则,请下载。 您也可以直接从加载。 支持AMD,CommonJS和香草环境。 在香草中,将导出d3全局变量: < script src =" https://unpkg.com/d3-geo@1 " > </ script > < script src =" https://unpkg.com/d3-geo-polygon@1 " > </ script > < script > // new projection var projection = d3 . geoDodecahedral ( ) ; // polyhedral projections don’t need SVG or canvas clipping anymore var project
2021-10-25 10:09:30 976KB JavaScript
1
用c#实现的二维多边形的碰撞检测,含演示demo和源码
2021-10-22 06:05:07 21KB GDI+ 2D Polygon Collision
1