文件名称:n-body-pairs:查找点云中所有最接近的重叠球对
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-20 00:28:43
JavaScript
n-body-pairs 给定一组半径相等的球体,找出所有成对的交点。 用法 首先使用 npm 安装: npm install n-body-pairs 然后按如下方式使用它: //Load the library, allocate initial data structure for searching in 3-dimensions with initial reserve capacity of 1000 points var nbp = require ( "n-body-pairs" ) ( 3 , 1000 ) //Create some points var points = [ [ 0 , 0 , 0 ] , [ 1 , 0 , 0 ] , [ 0 , 1 , 0 ] , [ 0 , 0 , 100000000 ] , [ 0 , 0 , 1
【文件预览】:
n-body-pairs-master
----.gitignore(98B)
----package.json(767B)
----README.md(2KB)
----pairs.js(8KB)
----test()
--------test.js(653B)