摘要: 稀疏八叉树算法示例: from matplotlib import pyplot as plt import numpy as np class OctreeNode: def __init__(self, bounds, depth=0): self.bounds = bounds # 体素的空间 阅读全文
posted @ 2024-10-23 14:29 hxqmw 阅读(221) 评论(0) 推荐(0)