该方法用于从单元空间分割数据结构中移除实体。
entity
:要移除的实体对象。// 创建一个单元空间分割对象
var partition = new CellSpacePartitioning();
// 创建一个实体对象
var entity = {id: 1, position: {x: 100, y: 100}, radius: 10};
// 将实体添加到单元空间分割对象
partition.addEntityToPartition(entity);
// 移除实体
partition.removeEntityFromPartition(entity);