稀疏八叉树:一种稀疏八叉树数据结构 源码
稀疏八度 一种基于指针的稀疏八叉树数据结构。 有关线性实现,请参见 。 ·· 安装 该库需要对等依赖关系 。 npm install math-ds sparse-octree 用法 点数 import { Vector3 } from "math-ds" ; import { PointOctree } from "sparse-octree" ; const min = new Vector3 ( - 1 , - 1 , - 1 ) ; const max = new Vector3 ( 1 , 1 , 1 ) ; const octree = new PointOctree ( m
用户评论