This commit is contained in:
Olek 2016-12-31 22:50:21 +01:00
parent 2be7ff9a4c
commit 2f8fb5d21d

View File

@ -129,7 +129,7 @@ impl<KdtreePoint: KdtreePointTrait> Kdtree<KdtreePoint> {
self.nodes.pop();
}
if self.node_depth_during_last_rebuild as f64 * 8.0 < depth as f64 {
if self.node_depth_during_last_rebuild as f64 * 2.0 < depth as f64 {
self.gather_points_and_rebuild();
}
}